generated from JetBrains/compose-multiplatform-template
-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Set BugSnag API key env variable in Android prod release workflow * Apply BugSnag Gradle plugin to Android app module * Add cocoapods-bugsnag plugin to automatically upload dSYM * Remove upload dSYM step from iOS prod release workflow * [Drop after testing] Throw exceptions to test Bugsnag implementation --------- Co-authored-by: Sasikanth Miriyampalli <[email protected]>
- Loading branch information
1 parent
985679a
commit 5427784
Showing
5 changed files
with
30 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,6 +66,7 @@ jobs: | |
- name: Pod Install | ||
run: | | ||
gem install cocoapods-bugsnag; | ||
./gradlew --no-daemon podInstall; | ||
- name: Build Archive | ||
|
@@ -90,13 +91,6 @@ jobs: | |
echo -n "$EXPORT_OPTIONS_PLIST" | base64 --decode -o $EXPORT_OPTS_PATH | ||
xcodebuild -exportArchive -archivePath $RUNNER_TEMP/twine.xcarchive -exportOptionsPlist $EXPORT_OPTS_PATH -exportPath $RUNNER_TEMP/build | ||
- name: Upload debug symbols to Bugsnag | ||
run: | | ||
cd $RUNNER_TEMP/twine.xcarchive/dSYMs/; | ||
curl --http1.1 https://upload.bugsnag.com/ \ | ||
-F apiKey=${BUGSNAG_API_KEY} \ | ||
-F [email protected]/Contents/Resources/DWARF/Twine \ | ||
- name: Clean up keychain and provisioning profile | ||
if: ${{ always() }} | ||
run: | | ||
|
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,5 +1,10 @@ | ||
target 'iosApp' do | ||
use_frameworks! | ||
platform :ios, '15.0' | ||
|
||
pod 'Bugsnag' | ||
plugin 'cocoapods-bugsnag' | ||
|
||
pod 'shared', :path => '../shared' | ||
|
||
end |
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