Skip to content

Commit

Permalink
【Android】Add extra tags needed for App Store submission
Browse files Browse the repository at this point in the history
  • Loading branch information
skylersaleh committed Aug 24, 2023
1 parent be985d8 commit 0a32d27
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,4 @@ cmake-build-*/
.idea/
.gradle
.google
tools/android_project/app/release
9 changes: 6 additions & 3 deletions tools/android_project/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ android {
storeFile file('../skyemu-open-signing-store')
}
}
compileSdkVersion 30
compileSdkVersion 31
ndkVersion '22.1.7171670'

defaultConfig {
signingConfig signingConfigs.release
applicationId = 'com.sky.SkyEmu'
minSdkVersion 19
targetSdkVersion 30
minSdkVersion 24
targetSdkVersion 31
versionCode 3
versionName "v3"
setProperty("archivesBaseName", applicationId + "-v" + versionCode)
externalNativeBuild {
cmake {
arguments '-DANDROID_STL=c++_static', '-DANDROID=1', '-DANDROID_ABI=arm64-v8a', '-DNDK_DEBUG=0', '-DCMAKE_BUILD_TYPE=RELWITHDEBINFO',"-DANDROID_ARM_NEON=TRUE"
Expand Down

0 comments on commit 0a32d27

Please sign in to comment.