Skip to content

Commit

Permalink
use SNAPSHOT on ouput AAR name to avoid confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaisting-livefront committed Sep 10, 2024
1 parent b650813 commit a02f475
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ dependencies {
}

// TODO: this should use a versioned AAR instead of referencing a local AAR BITAU-94
implementation(files("libs/bridge-0.1.0-release.aar"))
implementation(files("libs/bridge-0.1.0-SNAPSHOT-release.aar"))

implementation(libs.androidx.activity.compose)
implementation(libs.androidx.appcompat)
Expand Down
Binary file added app/libs/bridge-0.1.0-SNAPSHOT-release.aar
Binary file not shown.
2 changes: 1 addition & 1 deletion bridge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ android {
outputs
.map { it as com.android.build.gradle.internal.api.BaseVariantOutputImpl }
.forEach { output ->
val outputFileName = "bridge-${version}-${variant.baseName}.aar"
val outputFileName = "bridge-${version}-SNAPSHOT-${variant.baseName}.aar"
output.outputFileName = outputFileName
}
}
Expand Down

0 comments on commit a02f475

Please sign in to comment.