Skip to content

Commit

Permalink
Update sdk, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
ids1024 committed Jan 9, 2024
1 parent 2640c50 commit fdf2c52
Showing 1 changed file with 15 additions and 8 deletions.
23 changes: 15 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.7.10'
ext.kotlin_version = '1.9.0'
repositories {
maven {
url "https://plugins.gradle.org/m2/"
Expand All @@ -20,12 +20,11 @@ apply plugin: 'org.jetbrains.dokka-android'
apply plugin: 'org.jlleitschuh.gradle.ktlint'

android {
compileSdkVersion 33
buildToolsVersion "30.0.3"

defaultConfig {
compileSdk 34
minSdkVersion 18
targetSdkVersion 33
targetSdkVersion 34
buildToolsVersion = "34.0.0"
}

buildFeatures {
Expand Down Expand Up @@ -60,6 +59,14 @@ android {
useLegacyPackaging true
}
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = "18"
}
}

repositories {
Expand All @@ -68,8 +75,8 @@ repositories {
}

dependencies {
implementation 'androidx.appcompat:appcompat:1.6.0'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
implementation 'androidx.preference:preference-ktx:1.2.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}

0 comments on commit fdf2c52

Please sign in to comment.