Skip to content

Commit

Permalink
Misc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Abrynos committed Jul 7, 2024
1 parent 8f49740 commit 3c07f56
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.android.sdklib.AndroidVersion.VersionCodes

/*
* _____ _ _ _ _ _
* / ___| | (_) | | (_) | |
Expand Down Expand Up @@ -37,12 +39,12 @@ kotlin {

android {
namespace = "pl.edu.pjwstk.s999844.shoppinglist"
compileSdk = 34
compileSdk = VersionCodes.UPSIDE_DOWN_CAKE

defaultConfig {
applicationId = "pl.edu.pjwstk.s999844.shoppinglist"
minSdk = 25
targetSdk = 34
minSdk = VersionCodes.N_MR1
targetSdk = VersionCodes.UPSIDE_DOWN_CAKE
versionCode = 17
versionName = "v1.15.0"

Expand Down Expand Up @@ -92,6 +94,8 @@ android {
disable.add("UnusedIds")
// I'm not a french person so I have no idea what is correct here - let the translators take care of this
disable.add("TypographyQuotes")
// SDK 35 is not stable yet - August 2024
disable.add("OldTargetApi")
}
}

Expand Down

0 comments on commit 3c07f56

Please sign in to comment.