Bug? Can't compile a release version of app

AaronWolf

New Member
Hi all,
I'm having an issue in getting my app to compile in release mode using the hosted builder, it was compiling fine up until Monday, although I did work on another app and when I came the problem started occurring. The only thing changed since then was adding a device to the apple profile, but I've done this in the past and it hasn't caused issues. It will run in debug fine, but when attempting to do it in release the error below occurs:

B4i Version: 7.80
Parsing code. (0.75s)
Building folders structure. (0.13s)
Compiling code. (0.65s)
Compiling layouts code. (0.04s)
Building Xcode project. (0.66s)
Preparing project for builder. (3.01s)
Project size: 38.84 MB
Sending data to remote compiler. Error
Out: Command line invocation:
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -configuration Release "PRODUCT_NAME=PASS 4 iOS" CONFIGURATION_BUILD_DIR=/Users/administrator/Documents/UploadedProjects/<user id>/Payload "CODE_SIGN_IDENTITY=iPhone Distribution: CompanyName (CompanyID)" "OTHER_CODE_SIGN_FLAGS=--keychain <user id>" PROVISIONING_PROFILE=ProfileNo -arch armv7 -arch arm64

User defaults from command line:
IDEPackageSupportUseBuiltinSCM = YES

Build settings from command line:
ARCHS = armv7 arm64
CODE_SIGN_IDENTITY = iPhone Distribution: CompanyName (CompanyID)
CONFIGURATION_BUILD_DIR = /Users/administrator/Documents/UploadedProjects/<user id>/Payload
OTHER_CODE_SIGN_FLAGS = --keychain <user id>
PRODUCT_NAME = PASS 4 iOS
PROVISIONING_PROFILE = ProfileNo

note: Using new build system
note: Using codesigning identity override: iPhone Distribution: CompanyName (CompanyID)
note: Planning build
note: Analyzing workspace
note: Constructing build description
note: Build preparation complete
/Users/administrator/Documents/UploadedProjects/<user id>/B4iProject.xcodeproj: warning: GLKit is deprecated. Consider migrating to MetalKit instead. (in target 'B4iProject' from project 'B4iProject')
/Users/administrator/Documents/UploadedProjects/<user id>/B4iProject.xcodeproj: warning: OpenGLES is deprecated. Consider migrating to Metal instead. (in target 'B4iProject' from project 'B4iProject')
/Users/administrator/Documents/UploadedProjects/<user id>/B4iProject.xcodeproj: error: The linked framework 'GoogleMaps.framework' is missing one or more architectures required by this target: armv7. (in target 'B4iProject' from project 'B4iProject')
/Users/administrator/Documents/UploadedProjects/<user id>/B4iProject.xcodeproj: error: The linked framework 'GoogleMapsBase.framework' is missing one or more architectures required by this target: armv7. (in target 'B4iProject' from project 'B4iProject')
/Users/administrator/Documents/UploadedProjects/<user id>/B4iProject.xcodeproj: error: The linked framework 'GoogleMapsCore.framework' is missing one or more architectures required by this target: armv7. (in target 'B4iProject' from project 'B4iProject')


Error: ** BUILD FAILED **

I'm still learning the software, so I might be missing something obvious. Some things I've noted:
- Another app I'm working on compiles release mode fine
- Nothing has been changed in the code since the last successful build, trying previous back-ups also shows the same error for this project
- I've redone the certificates, identifier, profiles etc. I still get this message
- I'm running B4I 7.80
- Tried secondary builder / checked host ID
 
Top