-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Debug App Store workflows #1248
Changes from 8 commits
c25b58d
7c510c3
92a47dd
0986590
ab0fe27
0165118
6f872a1
f62f7ad
911dd75
49d29fa
b3b9fc7
9e2b51e
3d4a585
bd49d56
7dac906
5b64e4a
5f14676
6352834
7f6b920
6b61c3d
eac1799
a7044c9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,20 +17,20 @@ | |
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0.3</string> | ||
<string>1.0.4</string> | ||
<key>CFBundleURLTypes</key> | ||
<array> | ||
<dict> | ||
<key>CFBundleURLName</key> | ||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> | ||
<string>au.edu.faims.fieldmark</string> | ||
<key>CFBundleURLSchemes</key> | ||
<array> | ||
<string>org.fedarch.faims3</string> | ||
<string>au.edu.faims.fieldmark</string> | ||
</array> | ||
</dict> | ||
</array> | ||
<key>CFBundleVersion</key> | ||
<string>202409110011</string> | ||
<string>202412012317</string> | ||
Comment on lines
+20
to
+33
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so these will need to be env variables or some other build replacement later? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. they get changed by the prebuildConfig.sh script. |
||
<key>ITSAppUsesNonExemptEncryption</key> | ||
<false/> | ||
<key>LSRequiresIPhoneOS</key> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "fastlane" | ||
gem "cocoapods" | ||
|
||
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') | ||
eval_gemfile(plugins_path) if File.exist?(plugins_path) |
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still necessary?