Skip to content

Commit 4218b0f

Browse files
committed
Update to latest Android target SDK 33.
1 parent 470964a commit 4218b0f

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.idea/kotlinc.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

+4-5
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33

44
android {
5-
compileSdkVersion 32
65
namespace 'io.github.colemakmods.keyboard_companion'
76

87
defaultConfig {
98
applicationId "io.github.colemakmods.keyboard_companion"
9+
compileSdk 33
10+
targetSdkVersion 33
1011
minSdkVersion 21
11-
targetSdkVersion 32
1212

1313
versionCode 5
1414
versionName "1.06"
@@ -56,12 +56,11 @@ repositories {
5656
}
5757

5858
dependencies {
59-
implementation 'androidx.appcompat:appcompat:1.3.0'
60-
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
59+
implementation 'androidx.appcompat:appcompat:1.6.1'
60+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
6161
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.10.3'
6262
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.10.3'
6363
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.10.3'
6464
implementation 'com.jakewharton.timber:timber:4.7.1'
6565
implementation "androidx.core:core-ktx:1.5.0"
66-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
6766
}

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
buildscript {
2-
ext.kotlin_version = '1.5.30'
2+
ext.kotlin_version = '1.6.21'
33

44
repositories {
55
google()
66
mavenCentral()
77
}
88

99
dependencies {
10-
classpath 'com.android.tools.build:gradle:7.3.0'
10+
classpath 'com.android.tools.build:gradle:7.3.1'
1111
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1212
}
1313
}

0 commit comments

Comments
 (0)