Skip to content

Commit

Permalink
Explicitly set compileSdkVersion to 34
Browse files Browse the repository at this point in the history
  • Loading branch information
federicoiosue committed Aug 23, 2024
1 parent 3510d22 commit 5ef4455
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ VERSION_CODE=333
PACKAGE=it.feio.android.omninotes
MIN_SDK=24
TARGET_SDK=33
COMPILE_SDK=34

android.enableJetifier=true
android.useAndroidX=true
Expand Down
2 changes: 1 addition & 1 deletion omniNotes/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ android {
applicationId project.PACKAGE
minSdkVersion project.MIN_SDK
targetSdkVersion project.TARGET_SDK
compileSdkVersion Integer.parseInt(project.COMPILE_SDK)
versionName project.VERSION_NAME
versionCode Integer.parseInt(project.VERSION_CODE)
vectorDrawables.useSupportLibrary = true
Expand Down Expand Up @@ -108,7 +109,6 @@ android {
}
}


compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
Expand Down

0 comments on commit 5ef4455

Please sign in to comment.