-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11302 from keymanapp/chore/ios/10671-xcode-15-build
chore(ios,mac): support build on Apple Silicon using Xcode 15.3
- Loading branch information
Showing
21 changed files
with
110 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
PODS: | ||
- Sentry (5.2.1): | ||
- Sentry/Core (= 5.2.1) | ||
- Sentry/Core (5.2.1) | ||
- Sentry (8.24.0): | ||
- Sentry/Core (= 8.24.0) | ||
- Sentry/Core (8.24.0) | ||
|
||
DEPENDENCIES: | ||
- Sentry (from `https://github.com/getsentry/sentry-cocoa.git`, tag `5.2.1`) | ||
- Sentry (from `https://github.com/getsentry/sentry-cocoa.git`, tag `8.24.0`) | ||
|
||
EXTERNAL SOURCES: | ||
Sentry: | ||
:git: https://github.com/getsentry/sentry-cocoa.git | ||
:tag: 5.2.1 | ||
:tag: 8.24.0 | ||
|
||
CHECKOUT OPTIONS: | ||
Sentry: | ||
:git: https://github.com/getsentry/sentry-cocoa.git | ||
:tag: 5.2.1 | ||
:tag: 8.24.0 | ||
|
||
SPEC CHECKSUMS: | ||
Sentry: 7d075cae43a9a518fdd51e258b6212f0527c51cd | ||
Sentry: 2f6baed15a3f8056b875fc903dc3dcb2903117f4 | ||
|
||
PODFILE CHECKSUM: 521a56f741ba869ecf0fd64a7773173265973269 | ||
PODFILE CHECKSUM: 483593d0b294fc5751c2490061e01211db3f9ecc | ||
|
||
COCOAPODS: 1.11.2 | ||
COCOAPODS: 1.15.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Calls resource script to perform the dSYM upload | ||
|
||
source "$KEYMAN_ROOT/resources/build/xcode-utils.sh" | ||
phaseSentryDsymUpload "keyman-ios" |
11 changes: 11 additions & 0 deletions
11
resources/build/set-bundle-versions-and-settings-tagged.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Calls script in xcode-utils to update the version | ||
# true: applies VERSION_WITH_TAG to custom KeymanVersionWithTag plist member used for in-app display | ||
# updates the version string for Settings | ||
|
||
source "$KEYMAN_ROOT/resources/build/xcode-utils.sh" | ||
|
||
phaseSetBundleVersions true | ||
|
||
setSettingsBundleVersion |
11 changes: 11 additions & 0 deletions
11
resources/build/set-bundle-versions-and-settings-untagged.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Calls script in xcode-utils to update the version | ||
# true: applies VERSION_WITH_TAG to custom KeymanVersionWithTag plist member used for in-app display | ||
# updates the version string for Settings | ||
|
||
source "$KEYMAN_ROOT/resources/build/xcode-utils.sh" | ||
|
||
phaseSetBundleVersions | ||
|
||
setSettingsBundleVersion |
Oops, something went wrong.