Skip to content

Commit

Permalink
Support for Android 15 (#388)
Browse files Browse the repository at this point in the history
**Description:**

- Updates compile and target sdk to android 15
  • Loading branch information
leonlatsch authored Nov 8, 2024
1 parent 80619fe commit 4ba58a4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ apply(plugin = "androidx.navigation.safeargs.kotlin")
apply(plugin = "dagger.hilt.android.plugin")

android {
compileSdk = 34 // Android 14
compileSdk = VersionCodes.VANILLA_ICE_CREAM

defaultConfig {
applicationId = "dev.leonlatsch.photok"
minSdk = VersionCodes.N
targetSdk = 34 // Android 14
targetSdk = VersionCodes.VANILLA_ICE_CREAM

versionCode = appVersionCode.toInt()
versionName = appVersionName

Expand Down

0 comments on commit 4ba58a4

Please sign in to comment.