mirror of
https://github.com/bitwarden/android.git
synced 2024-11-21 08:55:48 +03:00
Bump authenticatorbridge sdk version to 1.0.0 (#4221)
This commit is contained in:
parent
e5e0464929
commit
8f9585e4bc
4 changed files with 8 additions and 5 deletions
|
@ -162,8 +162,7 @@ dependencies {
|
|||
add("standardImplementation", dependencyNotation)
|
||||
}
|
||||
|
||||
// TODO: this should use a versioned AAR instead of referencing a local AAR BITAU-94
|
||||
implementation(files("libs/authenticatorbridge-0.1.0-SNAPSHOT-release.aar"))
|
||||
implementation(files("libs/authenticatorbridge-1.0.0-release.aar"))
|
||||
|
||||
implementation(libs.androidx.activity.compose)
|
||||
implementation(libs.androidx.appcompat)
|
||||
|
|
Binary file not shown.
|
@ -1,4 +1,4 @@
|
|||
v0.1.0 (pending)
|
||||
v1.1.0 (pending)
|
||||
--------
|
||||
|
||||
### API Changes
|
||||
|
@ -6,3 +6,7 @@ v0.1.0 (pending)
|
|||
### Breaking Changes
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
v1.0.0
|
||||
--------
|
||||
Initial release.
|
|
@ -1,7 +1,7 @@
|
|||
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
||||
|
||||
// For more info on versioning, see the README.
|
||||
val version = "0.1.0"
|
||||
val version = "1.0.0"
|
||||
|
||||
plugins {
|
||||
alias(libs.plugins.android.library)
|
||||
|
@ -46,7 +46,7 @@ android {
|
|||
outputs
|
||||
.map { it as com.android.build.gradle.internal.api.BaseVariantOutputImpl }
|
||||
.forEach { output ->
|
||||
val outputFileName = "authenticatorbridge-${version}-SNAPSHOT-${variant.baseName}.aar"
|
||||
val outputFileName = "authenticatorbridge-${version}-${variant.baseName}.aar"
|
||||
output.outputFileName = outputFileName
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue