diff --git a/packages/app/ios/Podfile b/packages/app/ios/Podfile index f55cbe60..69c57248 100644 --- a/packages/app/ios/Podfile +++ b/packages/app/ios/Podfile @@ -1,3 +1,6 @@ +IS_CI = ENV['CI'] + + require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' @@ -17,11 +20,10 @@ target 'app' do # Pods for testing end - # Enables Flipper. - # - # Note that if you have use_frameworks! enabled, Flipper will not work and - # you should disable the next line. - use_flipper!() + # Enables Flipper, do not do it on CI enviroemnts, slows down the entire build on bitrise + if not IS_CI + use_flipper! ( { ... } ) + end post_install do |installer| react_native_post_install(installer) diff --git a/packages/app/ios/app.xcodeproj/project.pbxproj b/packages/app/ios/app.xcodeproj/project.pbxproj index b6ed27ec..4a2e6295 100644 --- a/packages/app/ios/app.xcodeproj/project.pbxproj +++ b/packages/app/ios/app.xcodeproj/project.pbxproj @@ -784,12 +784,12 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 162; + CURRENT_PROJECT_VERSION = 163; DEVELOPMENT_TEAM = 76DV673YHX; ENABLE_BITCODE = NO; INFOPLIST_FILE = app/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 2.0.0; + MARKETING_VERSION = 2.0.1; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", @@ -813,11 +813,11 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = "iPhone Distribution"; CODE_SIGN_STYLE = Manual; - CURRENT_PROJECT_VERSION = 162; + CURRENT_PROJECT_VERSION = 163; DEVELOPMENT_TEAM = 76DV673YHX; INFOPLIST_FILE = app/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - MARKETING_VERSION = 2.0.0; + MARKETING_VERSION = 2.0.1; OTHER_LDFLAGS = ( "$(inherited)", "-ObjC", @@ -1051,7 +1051,7 @@ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"", "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", "\"$(inherited)\"", - "\"$(SDKROOT)/usr/lib/swift\"" + "\"$(SDKROOT)/usr/lib/swift\"", ); MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos;