Skip to content

Commit

Permalink
Bump gradle dependencies and target sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
lneugebauer committed Jul 23, 2023
1 parent 94c6a44 commit 3a6639c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ sonar {
}

android {
compileSdk 34
if (keystoreProperties.containsKey('storeFile')) {
signingConfigs {
upload {
Expand All @@ -38,12 +39,11 @@ android {
}
}
}
compileSdk 33

defaultConfig {
applicationId "de.lukasneugebauer.nextcloudcookbook"
minSdk 23
targetSdk 33
targetSdk 34
versionCode 25
versionName "0.11.3"

Expand Down Expand Up @@ -123,7 +123,7 @@ kotlin {

dependencies {

ktlint("com.pinterest:ktlint:0.49.1") {
ktlint('com.pinterest:ktlint:0.50.0') {
attributes {
attribute(Bundling.BUNDLING_ATTRIBUTE, getObjects().named(Bundling, Bundling.EXTERNAL))
}
Expand Down Expand Up @@ -155,7 +155,7 @@ dependencies {

implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
implementation platform('com.squareup.okhttp3:okhttp-bom:4.9.3')
implementation platform('com.squareup.okhttp3:okhttp-bom:4.11.0')
implementation 'com.squareup.okhttp3:okhttp'
implementation 'com.squareup.okhttp3:logging-interceptor'

Expand All @@ -179,7 +179,7 @@ dependencies {
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"

debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.11'
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.12'
}

kapt {
Expand Down

0 comments on commit 3a6639c

Please sign in to comment.