mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #15001 from hrydgard/update-android-target
Update target Android version from 11 to 12. (API 30 to 31).
This commit is contained in:
commit
1cd520ae31
2 changed files with 6 additions and 5 deletions
|
@ -55,8 +55,8 @@
|
|||
android:name=".PpssppActivity"
|
||||
android:configChanges="locale|keyboard|keyboardHidden|navigation|uiMode"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/ppsspp_style">
|
||||
|
||||
android:theme="@style/ppsspp_style"
|
||||
android:exported="true">
|
||||
<!-- android:screenOrientation="landscape" -->
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
@ -106,7 +106,8 @@
|
|||
<meta-data android:name="isGame" android:value="true" />
|
||||
<activity
|
||||
android:name=".ShortcutActivity"
|
||||
android:label="@string/shortcut_name" >
|
||||
android:label="@string/shortcut_name"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ android {
|
|||
}
|
||||
}
|
||||
}
|
||||
compileSdkVersion 30
|
||||
compileSdkVersion 31
|
||||
defaultConfig {
|
||||
applicationId 'org.ppsspp.ppsspp'
|
||||
if (androidGitVersion.name() != "unknown" && androidGitVersion.code() >= 14000000) {
|
||||
|
@ -60,7 +60,7 @@ android {
|
|||
new File("versioncode.txt").write(androidGitVersion.code().toString())
|
||||
|
||||
minSdkVersion 9
|
||||
targetSdkVersion 30
|
||||
targetSdkVersion 31
|
||||
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