edias
edias
Is this issue still happening? I'm able to generate a framework (`#dwarf-and-dsym,no-include-frameworks`) but I'm having issues with headers not being included. I'm guessing the issue remains? I'm trying to generate...
@tomlokhorst can you please add the full spec? 14 or 16 inch, SSD size, etc?
@evgenyneu. I mean debug my own App, put breakpoints and inspect variables.
I just tested with Xcode 12.1 in a fresh test project and in fact it works. However, on my real project it does not. Other libraries works pretty fine. I...
Did you manage to overcome this issue @sgammon ? If so, how did you do that?
I just managed to get it working with `@import Mixpanel;` I strong recommend to update the documentation. I spent a lot of time googling around and trying a number of...
Do you guys have any update on this one?
Installing `github.com/otiai10/gosseract/v2`, I got this error: ``` main.go:6:2: no required module provides package github.com/otiai10/gosseract; to add it: go get github.com/otiai10/gosseract ``` After running `go get github.com/otiai10/gosseract` I have this on...
It turned out I was importing the old library on my project ``` import ( "github.com/otiai10/gosseract" ) ``` After changing to v2, everything compile fine. ``` import ( "github.com/otiai10/gosseract/v2" )...