Skip to content

Commit e32b5d8

Browse files
authored
Merge pull request #223 from mattrubin/fastlane-build
Fix Fastlane builds with Xcode 9
2 parents 8f81e5f + 5846d87 commit e32b5d8

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

Authenticator.xcodeproj/project.pbxproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -740,11 +740,13 @@
740740
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
741741
BUNDLE_DISPLAY_NAME = "${PRODUCT_NAME} ∆";
742742
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
743+
CURRENT_PROJECT_VERSION = 0;
743744
DEVELOPMENT_TEAM = WD7ETSN9J9;
744745
INFOPLIST_FILE = Authenticator/Resources/Info.plist;
745746
PRODUCT_BUNDLE_IDENTIFIER = me.mattrubin.authenticator.dev;
746747
PRODUCT_NAME = Authenticator;
747748
TARGETED_DEVICE_FAMILY = 1;
749+
VERSIONING_SYSTEM = "apple-generic";
748750
};
749751
name = Debug;
750752
};
@@ -755,11 +757,13 @@
755757
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
756758
BUNDLE_DISPLAY_NAME = "${PRODUCT_NAME}";
757759
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
760+
CURRENT_PROJECT_VERSION = 0;
758761
DEVELOPMENT_TEAM = WD7ETSN9J9;
759762
INFOPLIST_FILE = Authenticator/Resources/Info.plist;
760763
PRODUCT_BUNDLE_IDENTIFIER = me.mattrubin.authenticator;
761764
PRODUCT_NAME = Authenticator;
762765
TARGETED_DEVICE_FAMILY = 1;
766+
VERSIONING_SYSTEM = "apple-generic";
763767
};
764768
name = Release;
765769
};

fastlane/Gymfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
scheme "Authenticator"
22
clean true
3+
export_options(
4+
method: "app-store",
5+
provisioningProfiles: {
6+
"me.mattrubin.authenticator": "Authenticator Distribution"
7+
},
8+
)

0 commit comments

Comments
 (0)