We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e43f00d commit 9430124Copy full SHA for 9430124
android-library.gradle
@@ -25,6 +25,13 @@ android {
25
release {
26
minifyEnabled false
27
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
28
+
29
+ // Rename the artifact to artifact_name-<version>.aar, required since gradle 7
30
+ libraryVariants.all { variant ->
31
+ variant.outputs.all { output ->
32
+ outputFileName = "${archivesBaseName}-${version}.aar"
33
+ }
34
35
}
36
debug {
37
testCoverageEnabled true
build.gradle
@@ -54,7 +54,7 @@ allprojects {
54
55
56
57
- project.version = "1.0.0-beta14"
+ project.version = "1.0.1"
58
59
60
0 commit comments