File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
android-database-sqlcipher Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ apply from: "maven.gradle"
55android {
66
77 compileSdkVersion 26
8- buildToolsVersion " 26.0.1"
98
109 defaultConfig {
1110 versionName " ${ clientVersionNumber} "
@@ -37,8 +36,8 @@ android {
3736 variant. outputs. each { output ->
3837 def outputFile = output. outputFile
3938 if (outputFile != null && outputFile. name. endsWith(" .aar" )) {
40- def fileName = " ${ archivesBaseName} -${ clientVersionNumber} .aar"
41- output. outputFile = new File (outputFile . parent, fileName)
39+ def versionFileName = " ${ archivesBaseName} -${ clientVersionNumber} .aar"
40+ output. outputFileName = versionFileName
4241 }
4342 }
4443 }
Original file line number Diff line number Diff line change 22
33buildscript {
44 repositories {
5+ google()
56 jcenter()
67 }
78 dependencies {
8- classpath ' com.android.tools.build:gradle:2.3.3 '
9+ classpath ' com.android.tools.build:gradle:3.2.0 '
910 }
1011}
1112
1213allprojects {
1314 repositories {
15+ google()
1416 jcenter()
1517 }
1618}
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22distributionPath =wrapper/dists
33zipStoreBase =GRADLE_USER_HOME
44zipStorePath =wrapper/dists
5- distributionUrl =https\://services.gradle.org/distributions/gradle-3.3 -bin.zip
5+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.10.2 -bin.zip
You can’t perform that action at this time.
0 commit comments