Skip to content

Commit

Permalink
Gradle: Fix some deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Oct 6, 2023
1 parent 10ccbfd commit 42164b3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions android/build.gradle
Expand Up @@ -45,10 +45,9 @@ android {
}
}

compileSdkVersion 33
compileSdk 33
ndkVersion "21.4.7075529"


defaultConfig {
applicationId 'org.ppsspp.ppsspp'
if (androidGitVersion.name() != "unknown" && androidGitVersion.code() >= 14000000) {
Expand All @@ -63,8 +62,8 @@ android {
new File("versionname.txt").write(androidGitVersion.name())
new File("versioncode.txt").write(androidGitVersion.code().toString())

minSdkVersion 9
targetSdkVersion 33
minSdk 9
targetSdk 33
if (project.hasProperty("ANDROID_VERSION_CODE") && project.hasProperty("ANDROID_VERSION_NAME")) {
versionCode ANDROID_VERSION_CODE
versionName ANDROID_VERSION_NAME
Expand Down

0 comments on commit 42164b3

Please sign in to comment.