Skip to content

Commit 3e35752

Browse files
committed
Updated gradle to 5.1 and updated test libs.
1 parent bbf617f commit 3e35752

File tree

4 files changed

+10
-15
lines changed

4 files changed

+10
-15
lines changed

app/build.gradle

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ android {
1212
targetSdkVersion 28
1313
versionCode 1
1414
versionName "1.0"
15-
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1615
}
1716
buildTypes {
1817
release {
@@ -26,11 +25,7 @@ dependencies {
2625
implementation project(path: ':library')
2726

2827
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
29-
implementation 'androidx.appcompat:appcompat:1.0.0'
30-
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
31-
32-
testImplementation 'junit:junit:4.12'
3328

34-
androidTestImplementation 'androidx.test:runner:1.1.0'
35-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
29+
implementation 'androidx.appcompat:appcompat:1.0.2'
30+
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
3631
}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
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.2.71'
4+
ext.kotlin_version = '1.3.11'
55
repositories {
66
google()
77
jcenter()
88
maven { url "https://plugins.gradle.org/m2/" }
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:3.4.0-alpha02'
11+
classpath 'com.android.tools.build:gradle:3.4.0-alpha09'
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1313
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1414
classpath "gradle.plugin.org.jlleitschuh.gradle:ktlint-gradle:6.2.1"

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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.10.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1-milestone-1-all.zip

library/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
defaultConfig {
1111
minSdkVersion 16
1212
targetSdkVersion 28
13-
versionCode 1
14-
versionName "1.0"
13+
versionCode 2
14+
versionName "1.3.0"
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717

@@ -31,15 +31,15 @@ android {
3131
}
3232

3333
dependencies {
34-
implementation 'androidx.appcompat:appcompat:1.0.0'
34+
implementation 'androidx.appcompat:appcompat:1.0.2'
3535
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
3636

3737
api 'com.jakewharton.threetenabp:threetenabp:1.1.1'
3838

3939
testImplementation 'junit:junit:4.12'
4040

41-
androidTestImplementation 'androidx.test:runner:1.1.0'
42-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
41+
androidTestImplementation 'androidx.test:runner:1.1.1'
42+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
4343
}
4444

4545
repositories {

0 commit comments

Comments
 (0)