diff --git a/android/build.gradle b/android/build.gradle index c2e08dc091..1acfad56d2 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -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