mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Gradle: Fix some deprecation warnings
This commit is contained in:
parent
37de5b9d0d
commit
8d59e30b53
1 changed files with 3 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue