SrSouza
01/26/2023, 12:11 PMSrSouza
01/26/2023, 12:44 PM/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -project PATH-TO-KMM/ios/Project.xcodeproj -scheme "Project" -configuration Debug OBJROOT=PATH-TO-KMM/build/ios SYMROOT=PATH-TO-KMM/ios -sdk iphonesimulator -arch arm64
When I get this command line and run in terminal without -arch arm64
the build is successfully.SrSouza
01/26/2023, 2:01 PM-arch arm64
and remove from the iOS Application before launch, the build one and add this new shell script.
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -project $PWD/ios/Project.xcodeproj -scheme "Project" -configuration Debug OBJROOT=$PWD/build/ios SYMROOT=$PWD/build/ios -sdk iphonesimulator
It work really well, the annoying thing is that all the Schema configuration, etc, is not directly in shellscript and this is kinda sad.SrSouza
01/26/2023, 3:20 PM