mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 15:30:35 +00:00
2845f173ea
We just updated from 10 to 11 which enabled scoped storage, but now that 12 is final, we might as well target that. Some new APIs are available that might be useful, like a crash dump API and more refresh rate control.
165 lines
4.4 KiB
Groovy
165 lines
4.4 KiB
Groovy
plugins {
|
|
id 'com.gladed.androidgitversion' version '0.4.5'
|
|
}
|
|
apply plugin: 'com.android.application'
|
|
|
|
androidGitVersion {
|
|
codeFormat = "MNNPPBBBB"
|
|
format = "%tag%%-count%%-branch%%-dirty%"
|
|
prefix = "v" // Only tags beginning with v are considered.
|
|
untrackedIsDirty = false
|
|
}
|
|
|
|
dependencies {
|
|
def appcompat_version = "1.2.0"
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompat_version"
|
|
|
|
// Convenient wrapper around DocumentContract. Might look into writing our own
|
|
// to see if there's some performance to squeeze at some point, but doubt it.
|
|
implementation "androidx.documentfile:documentfile:1.0.1"
|
|
}
|
|
|
|
android {
|
|
flavorDimensions "variant"
|
|
|
|
signingConfigs {
|
|
debug {
|
|
storeFile file("debug.keystore")
|
|
}
|
|
optimized {
|
|
storeFile file("debug.keystore")
|
|
}
|
|
|
|
// Set these in a system global (or project local, but not checked in) gradle.properties .
|
|
if (project.hasProperty("RELEASE_STORE_FILE")) {
|
|
release {
|
|
storeFile file(RELEASE_STORE_FILE)
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
keyPassword RELEASE_KEY_PASSWORD
|
|
}
|
|
} else {
|
|
release {
|
|
}
|
|
}
|
|
}
|
|
compileSdkVersion 31
|
|
defaultConfig {
|
|
applicationId 'org.ppsspp.ppsspp'
|
|
if (androidGitVersion.name() != "unknown" && androidGitVersion.code() >= 14000000) {
|
|
// Start using automatic Android version numbers from version 1.4.
|
|
println "Overriding Android Version Name, Code: " + androidGitVersion.name() + " " + androidGitVersion.code();
|
|
versionName androidGitVersion.name()
|
|
versionCode androidGitVersion.code()
|
|
} else {
|
|
println "(not using these:) Android Version Name, Code: " + androidGitVersion.name() + " " + androidGitVersion.code();
|
|
}
|
|
|
|
new File("versionname.txt").write(androidGitVersion.name())
|
|
new File("versioncode.txt").write(androidGitVersion.code().toString())
|
|
|
|
minSdkVersion 9
|
|
targetSdkVersion 31
|
|
if (project.hasProperty("ANDROID_VERSION_CODE") && project.hasProperty("ANDROID_VERSION_NAME")) {
|
|
versionCode ANDROID_VERSION_CODE
|
|
versionName ANDROID_VERSION_NAME
|
|
}
|
|
ndk {
|
|
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
|
|
}
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled = false
|
|
jniDebuggable true
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
optimized {
|
|
// Debug signed but optimized.
|
|
minifyEnabled = false
|
|
jniDebuggable true
|
|
signingConfig android.buildTypes.debug.signingConfig
|
|
}
|
|
release {
|
|
minifyEnabled = false
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path '../CMakeLists.txt'
|
|
}
|
|
}
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
res.srcDirs = ['res']
|
|
java.srcDirs = ['src']
|
|
aidl.srcDirs = ['src']
|
|
resources.srcDirs = ['src']
|
|
assets.srcDirs = [
|
|
'../assets',
|
|
]
|
|
}
|
|
gold {
|
|
res.srcDirs = ['gold/res']
|
|
}
|
|
}
|
|
productFlavors {
|
|
normal {
|
|
applicationId 'org.ppsspp.ppsspp'
|
|
dimension "variant"
|
|
externalNativeBuild {
|
|
cmake {
|
|
// Available arguments listed at https://developer.android.com/ndk/guides/cmake.html
|
|
arguments '-DANDROID=true',
|
|
'-DANDROID_PLATFORM=android-16',
|
|
'-DANDROID_TOOLCHAIN=clang',
|
|
'-DANDROID_CPP_FEATURES=',
|
|
'-DANDROID_STL=c++_static',
|
|
'-DANDROID_ARM_NEON=TRUE'
|
|
}
|
|
}
|
|
}
|
|
gold {
|
|
applicationId 'org.ppsspp.ppssppgold'
|
|
dimension "variant"
|
|
externalNativeBuild {
|
|
cmake {
|
|
// Available arguments listed at https://developer.android.com/ndk/guides/cmake.html
|
|
arguments '-DANDROID=true',
|
|
'-DANDROID_PLATFORM=android-16',
|
|
'-DANDROID_TOOLCHAIN=clang',
|
|
'-DANDROID_CPP_FEATURES=',
|
|
'-DANDROID_STL=c++_static',
|
|
'-DANDROID_ARM_NEON=TRUE',
|
|
'-DGOLD=TRUE'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
variantFilter { variant ->
|
|
def needed = variant.name in [
|
|
'normalDebug', // for debugging
|
|
'normalOptimized', // for testing
|
|
'normalRelease', // for Google Play releases
|
|
'goldRelease' // for Google Play releases
|
|
]
|
|
variant.setIgnore(!needed)
|
|
}
|
|
}
|
|
afterEvaluate {
|
|
android.sourceSets.main.assets.getSrcDirs().each { println it }
|
|
}
|
|
|
|
// F-Droid lite version can be created with : ./gradlew assembleOptimized -Pf_droid
|
|
if (project.hasProperty("f_droid")) {
|
|
project.android.sourceSets.main.java.srcDirs += 'libs/MogaStubs'
|
|
} else {
|
|
project.dependencies {
|
|
implementation files('libs/com.bda.controller.jar')
|
|
}
|
|
}
|