Skip to content

Commit

Permalink
Upgrade kotlin to 1.9.22
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonard committed Feb 15, 2024
1 parent 8d66ca9 commit a5f8c9a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdk 29
compileSdk 30
defaultConfig {
applicationId "foss.cnugteren.nlweer"
minSdkVersion 21
targetSdkVersion 29
targetSdkVersion 30
versionCode 11
versionName "1.9.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand All @@ -19,13 +19,16 @@ android {
}
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
buildFeatures {
viewBinding = true
buildConfig = true
}
kotlinOptions {
jvmTarget = '17'
}

namespace 'foss.cnugteren.nlweer'
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.6.21'
ext.kotlin_version = '1.9.22'
repositories {
google()
mavenCentral()
Expand Down

0 comments on commit a5f8c9a

Please sign in to comment.