2022-12-11 03:16:33 -05:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
id 'org.jetbrains.kotlin.android'
|
|
|
|
}
|
2015-04-30 18:15:10 -04:00
|
|
|
|
2023-01-09 13:36:58 -05:00
|
|
|
task copyProfile (type: Copy) {
|
|
|
|
description('Copies a generated baseline profile text file from managed device to src/main in the app module.')
|
|
|
|
from(project(':benchmark').file('build/outputs/managed_device_android_test_additional_output/pixel6Api31'))
|
|
|
|
into('src/main')
|
|
|
|
include('BaselineProfileGenerator_generate-baseline-prof.txt')
|
|
|
|
rename('BaselineProfileGenerator_generate-baseline-prof', 'baseline-prof')
|
|
|
|
}
|
|
|
|
|
2015-04-30 18:15:10 -04:00
|
|
|
android {
|
2022-08-21 14:40:44 -04:00
|
|
|
compileSdkVersion 33
|
2023-02-15 19:02:10 -05:00
|
|
|
ndkVersion "25.2.9519653"
|
2015-04-30 18:15:10 -04:00
|
|
|
|
2022-09-23 19:55:52 -04:00
|
|
|
viewBinding.enabled = true
|
|
|
|
|
2017-12-17 16:52:19 +01:00
|
|
|
compileOptions {
|
2020-07-15 08:13:06 +05:30
|
|
|
// Flag to enable support for the new language APIs
|
|
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
|
2023-01-14 18:35:32 -05:00
|
|
|
sourceCompatibility = "11"
|
|
|
|
targetCompatibility = "11"
|
2017-12-17 16:52:19 +01:00
|
|
|
}
|
|
|
|
|
2022-12-11 03:16:33 -05:00
|
|
|
kotlinOptions {
|
2023-01-14 18:35:32 -05:00
|
|
|
jvmTarget = '11'
|
2022-12-11 03:16:33 -05:00
|
|
|
}
|
|
|
|
|
2022-03-15 18:19:07 +01:00
|
|
|
lint {
|
2015-04-30 18:15:10 -04:00
|
|
|
// This is important as it will run lint but not abort on error
|
|
|
|
// Lint has some overly obnoxious "errors" that should really be warnings
|
|
|
|
abortOnError false
|
2016-07-20 22:28:39 -05:00
|
|
|
|
|
|
|
//Uncomment disable lines for test builds...
|
2016-07-21 19:26:09 -05:00
|
|
|
//disable 'MissingTranslation'
|
|
|
|
//disable 'ExtraTranslation'
|
2015-04-30 18:15:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "org.dolphinemu.dolphinemu"
|
2015-06-02 10:30:21 -04:00
|
|
|
minSdkVersion 21
|
2022-08-22 18:42:42 -04:00
|
|
|
targetSdkVersion 33
|
2015-06-08 18:07:26 -04:00
|
|
|
|
2018-02-16 19:55:37 +01:00
|
|
|
versionCode(getBuildVersionCode())
|
2015-06-08 18:07:26 -04:00
|
|
|
|
2017-03-20 20:48:07 +11:00
|
|
|
versionName "${getVersion()}"
|
2022-12-09 12:13:34 -05:00
|
|
|
|
2023-01-16 03:15:11 -05:00
|
|
|
buildConfigField "String", "GIT_HASH", "\"${getGitHash()}\""
|
|
|
|
buildConfigField "String", "BRANCH", "\"${getBranch()}\""
|
|
|
|
|
2022-12-09 12:13:34 -05:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2015-04-30 18:15:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
signingConfigs {
|
|
|
|
release {
|
|
|
|
if (project.hasProperty('keystore')) {
|
|
|
|
storeFile file(project.property('keystore'))
|
|
|
|
storePassword project.property('storepass')
|
|
|
|
keyAlias project.property('keyalias')
|
|
|
|
keyPassword project.property('keypass')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-13 22:45:12 -04:00
|
|
|
// Define build types, which are orthogonal to product flavors.
|
2015-04-30 18:15:10 -04:00
|
|
|
buildTypes {
|
|
|
|
// Signed by release key, allowing for upload to Play Store.
|
|
|
|
release {
|
2022-08-02 17:53:52 -07:00
|
|
|
if (project.hasProperty('keystore')) {
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
}
|
2021-11-19 22:55:02 +01:00
|
|
|
|
2023-04-08 14:54:49 +02:00
|
|
|
resValue 'string', 'app_name_suffixed', 'Dolphin Emulator'
|
2021-11-19 22:55:02 +01:00
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
proguardFiles getDefaultProguardFile(
|
|
|
|
'proguard-android-optimize.txt'),
|
|
|
|
'proguard-rules.pro'
|
2023-01-09 13:36:58 -05:00
|
|
|
|
|
|
|
preBuild.dependsOn copyProfile
|
2015-04-30 18:15:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Signed by debug key disallowing distribution on Play Store.
|
|
|
|
// Attaches 'debug' suffix to version and package name, allowing installation alongside the release build.
|
|
|
|
debug {
|
2023-04-08 14:54:49 +02:00
|
|
|
resValue 'string', 'app_name_suffixed', 'Dolphin Debug'
|
2015-04-30 18:15:10 -04:00
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
versionNameSuffix '-debug'
|
|
|
|
jniDebuggable true
|
|
|
|
}
|
2022-12-09 12:13:34 -05:00
|
|
|
|
|
|
|
benchmark {
|
2023-04-08 14:54:49 +02:00
|
|
|
resValue 'string', 'app_name_suffixed', 'Dolphin Benchmark'
|
2022-12-09 12:13:34 -05:00
|
|
|
signingConfig signingConfigs.debug
|
|
|
|
matchingFallbacks = ['release']
|
|
|
|
debuggable false
|
|
|
|
applicationIdSuffix ".benchmark"
|
|
|
|
versionNameSuffix '-benchmark'
|
|
|
|
proguardFiles getDefaultProguardFile(
|
|
|
|
'proguard-android-optimize.txt'),
|
|
|
|
'proguard-rules.pro'
|
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
}
|
2015-04-30 18:15:10 -04:00
|
|
|
}
|
2015-05-13 22:45:12 -04:00
|
|
|
|
2016-06-08 19:49:46 +02:00
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
path "../../../CMakeLists.txt"
|
2015-05-13 22:45:12 -04:00
|
|
|
}
|
2016-06-08 19:49:46 +02:00
|
|
|
}
|
2022-05-09 23:00:33 -04:00
|
|
|
namespace 'org.dolphinemu.dolphinemu'
|
2015-05-13 22:45:12 -04:00
|
|
|
|
2016-06-08 19:49:46 +02:00
|
|
|
defaultConfig {
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
2017-01-24 01:37:34 +01:00
|
|
|
arguments "-DANDROID_STL=c++_static", "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
|
|
|
|
// , "-DENABLE_GENERIC=ON"
|
2017-04-15 16:23:48 +02:00
|
|
|
abiFilters "arm64-v8a", "x86_64" //, "armeabi-v7a", "x86"
|
2021-05-25 22:52:50 +02:00
|
|
|
|
|
|
|
// Remove the line below if you want to build the C++ unit tests
|
|
|
|
targets "main"
|
2015-05-13 22:45:12 -04:00
|
|
|
}
|
2015-05-22 17:13:25 -04:00
|
|
|
}
|
2015-05-13 22:45:12 -04:00
|
|
|
}
|
2015-04-30 18:15:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-02-15 19:27:28 -05:00
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.2'
|
2020-07-15 08:13:06 +05:30
|
|
|
|
2022-12-11 03:16:33 -05:00
|
|
|
implementation 'androidx.core:core-ktx:1.9.0'
|
2023-02-15 19:27:28 -05:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
|
|
implementation 'androidx.exifinterface:exifinterface:1.3.6'
|
2019-11-15 01:51:54 -05:00
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2023-02-15 19:27:28 -05:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.3.0'
|
2022-05-28 22:36:16 -07:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
2023-02-15 19:27:28 -05:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.6.0'
|
2023-01-14 18:39:43 -05:00
|
|
|
implementation 'androidx.fragment:fragment:1.5.5'
|
2022-03-15 18:19:28 +01:00
|
|
|
implementation 'androidx.slidingpanelayout:slidingpanelayout:1.2.0'
|
2023-02-15 19:27:28 -05:00
|
|
|
implementation 'com.google.android.material:material:1.8.0'
|
2022-07-19 00:23:57 -04:00
|
|
|
implementation 'androidx.core:core-splashscreen:1.0.0'
|
2022-10-23 22:23:00 -04:00
|
|
|
implementation 'androidx.preference:preference:1.2.0'
|
2023-01-14 18:39:43 -05:00
|
|
|
implementation 'androidx.profileinstaller:profileinstaller:1.2.2'
|
2022-10-23 22:23:00 -04:00
|
|
|
|
2023-01-26 02:36:00 -05:00
|
|
|
// Kotlin extensions for lifecycle components
|
2023-02-15 19:27:28 -05:00
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.0'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.0'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.6.0'
|
2015-05-06 20:12:58 -04:00
|
|
|
|
2015-07-14 22:35:52 -04:00
|
|
|
// Android TV UI libraries.
|
2019-11-15 01:51:54 -05:00
|
|
|
implementation 'androidx.leanback:leanback:1.0.0'
|
|
|
|
implementation 'androidx.tvprovider:tvprovider:1.0.0'
|
2015-07-14 22:35:52 -04:00
|
|
|
|
2018-08-19 17:38:29 -04:00
|
|
|
// For REST calls
|
2022-01-05 13:39:54 -05:00
|
|
|
implementation 'com.android.volley:volley:1.2.1'
|
2018-08-19 17:38:29 -04:00
|
|
|
|
2022-05-01 18:54:14 -04:00
|
|
|
// For loading game covers from disk and GameTDB
|
2023-01-06 15:15:30 -05:00
|
|
|
implementation 'io.coil-kt:coil:2.2.2'
|
2016-01-09 12:28:29 -05:00
|
|
|
|
2019-03-07 00:14:58 -03:00
|
|
|
implementation 'com.nononsenseapps:filepicker:4.2.1'
|
2015-05-18 20:22:01 -04:00
|
|
|
}
|
2017-03-20 20:48:07 +11:00
|
|
|
|
|
|
|
def getVersion() {
|
2017-04-06 19:53:25 +10:00
|
|
|
def versionNumber = '0.0'
|
|
|
|
|
|
|
|
try {
|
|
|
|
versionNumber = 'git describe --always --long'.execute([], project.rootDir).text
|
|
|
|
.trim()
|
|
|
|
.replaceAll(/(-0)?-[^-]+$/, "")
|
|
|
|
} catch (Exception e) {
|
2021-05-10 12:27:34 +02:00
|
|
|
logger.error(e + ': Cannot find git, defaulting to dummy version number')
|
2017-03-24 14:33:12 +11:00
|
|
|
}
|
|
|
|
|
2017-04-06 19:53:25 +10:00
|
|
|
return versionNumber
|
2017-03-20 20:48:07 +11:00
|
|
|
}
|
2018-02-16 19:55:37 +01:00
|
|
|
|
|
|
|
def getBuildVersionCode() {
|
|
|
|
try {
|
|
|
|
def versionNumber = 'git rev-list --first-parent --count HEAD'.execute([], project.rootDir).text
|
|
|
|
.trim()
|
2021-05-10 12:27:34 +02:00
|
|
|
return Integer.valueOf(versionNumber)
|
2018-02-16 19:55:37 +01:00
|
|
|
} catch (Exception e) {
|
2021-05-10 12:27:34 +02:00
|
|
|
logger.error(e + ': Cannot find git, defaulting to dummy version number')
|
2018-02-16 19:55:37 +01:00
|
|
|
}
|
|
|
|
|
2021-05-10 12:27:34 +02:00
|
|
|
return 1
|
2018-02-16 19:55:37 +01:00
|
|
|
}
|
2023-01-16 03:15:11 -05:00
|
|
|
|
|
|
|
def getGitHash() {
|
|
|
|
try {
|
|
|
|
def gitHash = 'git rev-parse HEAD'.execute([], project.rootDir).text.trim()
|
|
|
|
return gitHash
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.error(e + ': Cannot find git, defaulting to dummy build hash')
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
def getBranch() {
|
|
|
|
try {
|
|
|
|
def branch = 'git rev-parse --abbrev-ref HEAD'.execute([], project.rootDir).text.trim()
|
|
|
|
return branch
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.error(e + ': Cannot find git, defaulting to dummy build hash')
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'master'
|
|
|
|
}
|