Skip to content

Commit 66d16b8

Browse files
Update versions of gradle, sdk, and libraries.
1 parent 551c6de commit 66d16b8

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
lines changed

app/build.gradle

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

55
android {
6-
compileSdkVersion 30
7-
buildToolsVersion "30.0.2"
6+
compileSdkVersion 33
87

98
defaultConfig {
109
applicationId "jp.co.optim.techblog_android_notification_sample"
1110
minSdkVersion 23
12-
targetSdkVersion 30
11+
targetSdkVersion 33
1312
versionCode 1
1413
versionName "1.0"
1514
}
@@ -25,8 +24,8 @@ android {
2524
dependencies {
2625
implementation fileTree(dir: "libs", include: ["*.jar"])
2726
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
28-
implementation 'androidx.appcompat:appcompat:1.2.0'
29-
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
30-
implementation 'androidx.core:core-ktx:1.3.2'
27+
implementation 'androidx.appcompat:appcompat:1.5.0'
28+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
29+
implementation 'androidx.core:core-ktx:1.8.0'
3130
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
3231
}

build.gradle

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = "1.3.72"
3+
ext.kotlin_version = "1.7.10"
44
repositories {
55
google()
6-
jcenter()
6+
mavenCentral()
77
}
88
dependencies {
9-
classpath "com.android.tools.build:gradle:4.1.1"
9+
classpath 'com.android.tools.build:gradle:7.2.2'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11-
12-
// NOTE: Do not place your application dependencies here; they belong
13-
// in the individual module build.gradle files
1411
}
1512
}
1613

1714
allprojects {
1815
repositories {
1916
google()
20-
jcenter()
17+
mavenCentral()
2118
}
2219
}
2320

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-6.5-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip

0 commit comments

Comments
 (0)