Gradle: Fix some deprecation warnings

This commit is contained in:
Henrik Rydgård 2023-08-22 17:10:25 +02:00
parent 10ccbfd68c
commit 42164b37d6

View File

@ -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) {
@ -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