mirror of
https://github.com/bitwarden/android.git
synced 2024-11-21 17:05:44 +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)
|
add("standardImplementation", dependencyNotation)
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: this should use a versioned AAR instead of referencing a local AAR BITAU-94
|
implementation(files("libs/authenticatorbridge-1.0.0-release.aar"))
|
||||||
implementation(files("libs/authenticatorbridge-0.1.0-SNAPSHOT-release.aar"))
|
|
||||||
|
|
||||||
implementation(libs.androidx.activity.compose)
|
implementation(libs.androidx.activity.compose)
|
||||||
implementation(libs.androidx.appcompat)
|
implementation(libs.androidx.appcompat)
|
||||||
|
|
Binary file not shown.
|
@ -1,4 +1,4 @@
|
||||||
v0.1.0 (pending)
|
v1.1.0 (pending)
|
||||||
--------
|
--------
|
||||||
|
|
||||||
### API Changes
|
### API Changes
|
||||||
|
@ -6,3 +6,7 @@ v0.1.0 (pending)
|
||||||
### Breaking Changes
|
### Breaking Changes
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
|
v1.0.0
|
||||||
|
--------
|
||||||
|
Initial release.
|
|
@ -1,7 +1,7 @@
|
||||||
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
||||||
|
|
||||||
// For more info on versioning, see the README.
|
// For more info on versioning, see the README.
|
||||||
val version = "0.1.0"
|
val version = "1.0.0"
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
alias(libs.plugins.android.library)
|
alias(libs.plugins.android.library)
|
||||||
|
@ -46,7 +46,7 @@ android {
|
||||||
outputs
|
outputs
|
||||||
.map { it as com.android.build.gradle.internal.api.BaseVariantOutputImpl }
|
.map { it as com.android.build.gradle.internal.api.BaseVariantOutputImpl }
|
||||||
.forEach { output ->
|
.forEach { output ->
|
||||||
val outputFileName = "authenticatorbridge-${version}-SNAPSHOT-${variant.baseName}.aar"
|
val outputFileName = "authenticatorbridge-${version}-${variant.baseName}.aar"
|
||||||
output.outputFileName = outputFileName
|
output.outputFileName = outputFileName
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue