Skip to content

Commit

Permalink
added: an option to disable uploadCrashlyticsMappingFile task
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-8 committed May 3, 2024
1 parent bcd79af commit 642b1d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .detoxrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports = {
binaryPath:
'android/app/build/outputs/apk/official/release/app-official-release.apk',
build:
'cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release -DuseDebugCertificate=yes -DminifyEnabled=no --warning-mode all --stacktrace && cd ..',
'cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release -DuseDebugCertificate=yes -DminifyEnabled=no -DuploadCrashlyticsMappingFile=no --warning-mode all --stacktrace && cd ..',
launchArgs: {},
},
},
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ android {
signingConfig signingConfigs.release
}
firebaseCrashlytics {
mappingFileUploadEnabled true
mappingFileUploadEnabled (System.getProperty('uploadCrashlyticsMappingFile', 'yes') == 'yes')
}
}
}
Expand Down

0 comments on commit 642b1d0

Please sign in to comment.