Skip to content

Commit 092727c

Browse files
committed
duplicate properties.
1 parent e328692 commit 092727c

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

library/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@ android {
88
buildToolsVersion = '34.0.0'
99
compileSdk 34
1010
defaultConfig {
11-
versionName rootProject.ext.get('versionName')
12-
versionCode rootProject.ext.get('versionCode')
1311
minSdk 22
1412
targetSdk 34
13+
versionCode rootProject.ext.get('versionCode')
14+
versionName rootProject.ext.get('versionName')
1515
setProperty("archivesBaseName", "androidx_github_" + versionName)
1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
17-
consumerProguardFiles "consumer-rules.pro"
18-
17+
consumerProguardFile "${project.rootDir}/proguard/consumer.pro"
1918
javaCompileOptions {
2019
annotationProcessorOptions {
2120
arguments = [ "room.schemaLocation": "$rootDir/schema".toString() ]
@@ -42,7 +41,6 @@ android {
4241
minifyEnabled false
4342
}
4443
release {
45-
consumerProguardFile "${project.rootDir}/proguard/consumer.pro"
4644
minifyEnabled false
4745
}
4846
}

0 commit comments

Comments
 (0)