Skip to content

Commit b20ebcd

Browse files
committed
update AS to 3.3.2
1 parent 908b0ed commit b20ebcd

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

app/build.gradle

+7-8
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ android {
1414
}
1515
}
1616
compileSdkVersion 25
17-
buildToolsVersion "25.0.3"
1817
defaultConfig {
1918
applicationId "com.github.ipcjs.screenshottile"
2019
minSdkVersion 24
@@ -63,13 +62,13 @@ android {
6362
}
6463

6564
dependencies {
66-
compile fileTree(include: ['*.jar'], dir: 'libs')
67-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
68-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
65+
implementation fileTree(include: ['*.jar'], dir: 'libs')
66+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
67+
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
6968
exclude group: 'com.android.support', module: 'support-annotations'
7069
})
71-
testCompile 'junit:junit:4.12'
72-
testCompile 'org.mockito:mockito-core:1.10.19'
73-
testCompile 'org.powermock:powermock-api-mockito:1.6.4'
74-
testCompile 'org.powermock:powermock-module-junit4:1.6.4'
70+
testImplementation 'junit:junit:4.12'
71+
testImplementation 'org.mockito:mockito-core:1.10.19'
72+
testImplementation 'org.powermock:powermock-api-mockito:1.6.4'
73+
testImplementation 'org.powermock:powermock-module-junit4:1.6.4'
7574
}

build.gradle

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.1.3-2'
4+
ext.kotlin_version = '1.3.21'
55
repositories {
66
jcenter()
7+
google()
78
}
89
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.0.0-beta2'
10+
classpath 'com.android.tools.build:gradle:3.3.2'
1011
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1112
}
1213
}
1314

1415
allprojects {
1516
repositories {
1617
jcenter()
18+
google()
1719
}
1820
}
1921

gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-rc-1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip

0 commit comments

Comments
 (0)