Skip to content

Commit 0d97846

Browse files
committed
Upgrade dependency version
1 parent 631c14c commit 0d97846

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
buildscript {
2-
ext.kotlin_version = '1.3.61'
3-
ext.androidx_version = '1.1.0'
2+
ext.kotlin_version = '1.4.21'
3+
ext.androidx_version = '1.2.0'
44
ext.android_annotation_version = '1.1.0'
55

66
ext.test_runner_version = '1.2.0'
77
ext.junit_version = '4.12'
88
ext.mockk_version = '1.9.2'
9-
ext.robolectric_version = '4.3.1'
9+
ext.robolectric_version = '4.4'
1010

1111
repositories {
1212
jcenter()
1313
google()
1414
}
1515
dependencies {
16-
classpath 'com.android.tools.build:gradle:3.5.3'
16+
classpath 'com.android.tools.build:gradle:4.1.1'
1717
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1818
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1919

demo/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
44

55
android {
6-
compileSdkVersion 29
7-
buildToolsVersion "29.0.2"
6+
compileSdkVersion 30
7+
buildToolsVersion "30.0.3"
88
defaultConfig {
99
applicationId "com.minibugdev"
1010
minSdkVersion 15
11-
targetSdkVersion 29
11+
targetSdkVersion 30
1212
versionCode 1
1313
versionName "1.0"
1414
}

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
# The setting is particularly useful for tweaking memory settings.
1212
android.enableJetifier=true
1313
android.useAndroidX=true
14-
android.enableUnitTestBinaryResources=true
1514
org.gradle.jvmargs=-Xmx1536m
1615

1716
# When configured, Gradle will run in incubating parallel mode.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Jun 24 11:14:39 ICT 2019
1+
#Tue Dec 29 15:08:23 ICT 2020
22
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-5.4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip

library/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ apply plugin: 'com.github.dcendents.android-maven'
55
group = 'com.github.minibugdev'
66

77
android {
8-
compileSdkVersion 29
9-
buildToolsVersion "29.0.2"
8+
compileSdkVersion 30
9+
buildToolsVersion "30.0.3"
1010

1111
defaultConfig {
1212
minSdkVersion 14
13-
targetSdkVersion 29
13+
targetSdkVersion 30
1414
versionCode 5
1515
versionName "2.0.0"
1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

0 commit comments

Comments
 (0)