Skip to content

Commit bb5098d

Browse files
authored
Merge pull request #30 from hannesa2/Modernize
Modernize
2 parents da6e06d + d78fad7 commit bb5098d

File tree

5 files changed

+161
-112
lines changed

5 files changed

+161
-112
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
buildscript {
2-
ext.kotlin_version = "1.5.0"
2+
ext.kotlin_version = "1.6.10"
33
repositories {
44
google()
55
mavenCentral()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:4.2.1'
8+
classpath 'com.android.tools.build:gradle:4.2.2'
99
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1010
}
1111
}

gradle/wrapper/gradle-wrapper.jar

333 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 153 additions & 104 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

library/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ group = 'com.github.jitpack'
88
version = '1.0'
99

1010
android {
11-
compileSdkVersion 30
11+
compileSdkVersion 31
1212

1313
defaultConfig {
1414
minSdkVersion 21
15-
targetSdkVersion 30
15+
targetSdkVersion 31
1616
versionCode 1
1717
versionName "1.0"
1818
}
@@ -31,9 +31,9 @@ android {
3131

3232
dependencies {
3333
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
34-
implementation 'androidx.core:core-ktx:1.3.2'
35-
implementation 'androidx.appcompat:appcompat:1.2.0'
36-
implementation 'com.google.android.material:material:1.3.0'
34+
implementation 'androidx.core:core-ktx:1.7.0'
35+
implementation 'androidx.appcompat:appcompat:1.4.1'
36+
implementation 'com.google.android.material:material:1.5.0'
3737
}
3838

3939
afterEvaluate {

0 commit comments

Comments
 (0)