Skip to content

Commit

Permalink
Fix Bugsnag upload conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
ofalvai committed Nov 11, 2024
1 parent 3ff57c7 commit 38ad6b2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@ licensee {
allowUrl("https://opensource.org/licenses/MIT")
}

bugsnag {
overwrite = true
}

dependencies {
implementation project(':core-common')
implementation project(':core-database')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ class AndroidAppConventionPlugin : Plugin<Project> {
buildTypes {
val buildUuidKey = "build_uuid"
getByName("debug") {
// Bugsnag won't upload mappings for debug builds, but the manifest placeholder
// needs to resolve to something
addManifestPlaceholders(mapOf(buildUuidKey to "debug"))
}
getByName("release") {
Expand Down
4 changes: 2 additions & 2 deletions build-logic/convention/src/main/kotlin/Constants.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ object Constants {
const val TARGET_SDK = 35
val javaToolchainVersion: JavaLanguageVersion = JavaLanguageVersion.of(17)

const val VERSION_CODE = 6
const val VERSION_NAME = "1.1.3"
const val VERSION_CODE = 7
const val VERSION_NAME = "1.1.4"
}

0 comments on commit 38ad6b2

Please sign in to comment.