Skip to content

Commit

Permalink
Merge pull request #3483 from Navid200/Navid_2024_05_24
Browse files Browse the repository at this point in the history
Android 15 compatibility - Upgrade minimum required android version to 7
  • Loading branch information
jamorham committed May 29, 2024
2 parents c67b74f + 5ac6b76 commit 27de713
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ android {

defaultConfig {
applicationId "com.eveningoutpost.dexdrip"
minSdkVersion 23
minSdkVersion 24
// increasing target SDK version can cause compatibility issues with Android 7+
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 23
targetSdkVersion 24
// change versionCode only when downgrade should be prevented
// eg, when data structures are incompatible
versionCode 1603091400
Expand Down Expand Up @@ -216,7 +216,7 @@ android {
// set minSdkVersion to 21 or higher. When using Android Studio 2.3 or higher,
// the build automatically avoids legacy multidex when deploying to a device running
// API level 21 or higher—regardless of what you set as your minSdkVersion.
minSdkVersion 23
minSdkVersion 24
versionNameSuffix "-dev"
buildConfigField "int", "buildVersion", "2021010100"
buildConfigField "String", "buildUUID", "\"0f79a60a-5616-99be-8eb1-a430edcfd9fd\""
Expand Down

0 comments on commit 27de713

Please sign in to comment.