Skip to content

Commit

Permalink
Merge pull request #443 from fmonniot/dependabot/gradle/com.google.de…
Browse files Browse the repository at this point in the history
…vtools.ksp-2.0.20-1.0.25

Bump com.google.devtools.ksp from 1.9.23-1.0.20 to 2.0.20-1.0.25
  • Loading branch information
fmonniot authored Sep 28, 2024
2 parents 09cf2be + 29900a9 commit a6d0336
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
# Java class files
*.class

# Kotlin files
.kotlin/

# Generated files
bin/
gen/
Expand Down
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.

4 changes: 1 addition & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
id 'com.android.application'
id 'kotlin-android'
id 'com.google.devtools.ksp'
id 'org.jetbrains.kotlin.plugin.compose' version '2.0.20'
}

android {
Expand Down Expand Up @@ -48,9 +49,6 @@ android {
compose true
buildConfig true
}
composeOptions {
kotlinCompilerExtensionVersion '1.5.12'
}

testOptions {
unitTests {
Expand Down
8 changes: 7 additions & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,10 @@
# hide the original source file name.
#-renamesourcefileattribute SourceFile

#-keep class org.xmlpull.v1.** { *; }
-dontwarn org.xmlpull.v1.**
-dontwarn org.kxml2.io.**
-dontwarn android.content.res.**
-dontwarn org.slf4j.impl.StaticLoggerBinder

-keep class org.xmlpull.** { *; }
-keepclassmembers class org.xmlpull.** { *; }
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:8.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.23"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.20"
}
}

plugins {
id 'com.google.devtools.ksp' version '1.9.23-1.0.20' apply false
id 'com.google.devtools.ksp' version '2.0.20-1.0.25' apply false
}

allprojects {
Expand Down

0 comments on commit a6d0336

Please sign in to comment.