2015-04-30 22:15:10 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2022-03-26 14:55:26 +00:00
|
|
|
compileSdkVersion 32
|
2022-05-10 17:56:13 +00:00
|
|
|
ndkVersion "23.1.7779620"
|
2015-04-30 22:15:10 +00:00
|
|
|
|
2017-12-17 15:52:19 +00:00
|
|
|
compileOptions {
|
2020-07-15 02:43:06 +00:00
|
|
|
// Flag to enable support for the new language APIs
|
|
|
|
coreLibraryDesugaringEnabled true
|
|
|
|
|
2017-12-17 15:52:19 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
2022-03-15 17:19:07 +00:00
|
|
|
lint {
|
2015-04-30 22:15:10 +00: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-21 03:28:39 +00:00
|
|
|
|
|
|
|
//Uncomment disable lines for test builds...
|
2016-07-22 00:26:09 +00:00
|
|
|
//disable 'MissingTranslation'
|
|
|
|
//disable 'ExtraTranslation'
|
2015-04-30 22:15:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
defaultConfig {
|
2015-06-16 19:42:11 +00:00
|
|
|
// TODO If this is ever modified, change application_id in strings.xml
|
2015-04-30 22:15:10 +00:00
|
|
|
applicationId "org.dolphinemu.dolphinemu"
|
2015-06-02 14:30:21 +00:00
|
|
|
minSdkVersion 21
|
2022-03-26 14:55:26 +00:00
|
|
|
targetSdkVersion 32
|
2015-06-08 22:07:26 +00:00
|
|
|
|
2018-02-16 18:55:37 +00:00
|
|
|
versionCode(getBuildVersionCode())
|
2015-06-08 22:07:26 +00:00
|
|
|
|
2017-03-20 09:48:07 +00:00
|
|
|
versionName "${getVersion()}"
|
2015-04-30 22:15:10 +00: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-14 02:45:12 +00:00
|
|
|
// Define build types, which are orthogonal to product flavors.
|
2015-04-30 22:15:10 +00:00
|
|
|
buildTypes {
|
|
|
|
// Signed by release key, allowing for upload to Play Store.
|
|
|
|
release {
|
|
|
|
signingConfig signingConfigs.release
|
2021-11-19 21:55:02 +00:00
|
|
|
|
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
proguardFiles getDefaultProguardFile(
|
|
|
|
'proguard-android-optimize.txt'),
|
|
|
|
'proguard-rules.pro'
|
2015-04-30 22:15:10 +00: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 {
|
2015-06-16 19:42:11 +00:00
|
|
|
// TODO If this is ever modified, change application_id in debug/strings.xml
|
2015-04-30 22:15:10 +00:00
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
versionNameSuffix '-debug'
|
|
|
|
jniDebuggable true
|
|
|
|
}
|
|
|
|
}
|
2015-05-14 02:45:12 +00:00
|
|
|
|
2016-06-08 17:49:46 +00:00
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
path "../../../CMakeLists.txt"
|
2021-11-13 19:41:11 +00:00
|
|
|
version "3.18.1"
|
2015-05-14 02:45:12 +00:00
|
|
|
}
|
2016-06-08 17:49:46 +00:00
|
|
|
}
|
2022-05-10 03:00:33 +00:00
|
|
|
namespace 'org.dolphinemu.dolphinemu'
|
2015-05-14 02:45:12 +00:00
|
|
|
|
2016-06-08 17:49:46 +00:00
|
|
|
defaultConfig {
|
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
2017-01-24 00:37:34 +00:00
|
|
|
arguments "-DANDROID_STL=c++_static", "-DCMAKE_BUILD_TYPE=RelWithDebInfo"
|
|
|
|
// , "-DENABLE_GENERIC=ON"
|
2017-04-15 14:23:48 +00:00
|
|
|
abiFilters "arm64-v8a", "x86_64" //, "armeabi-v7a", "x86"
|
2021-05-25 20:52:50 +00:00
|
|
|
|
|
|
|
// Remove the line below if you want to build the C++ unit tests
|
|
|
|
targets "main"
|
2015-05-14 02:45:12 +00:00
|
|
|
}
|
2015-05-22 21:13:25 +00:00
|
|
|
}
|
2015-05-14 02:45:12 +00:00
|
|
|
}
|
2015-04-30 22:15:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-05-10 10:27:34 +00:00
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
2020-07-15 02:43:06 +00:00
|
|
|
|
2022-03-15 17:19:28 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.4.1'
|
2022-01-05 18:39:54 +00:00
|
|
|
implementation 'androidx.exifinterface:exifinterface:1.3.3'
|
2019-11-15 06:51:54 +00:00
|
|
|
implementation 'androidx.cardview:cardview:1.0.0'
|
2021-07-25 20:23:18 +00:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
2022-03-15 17:19:28 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel:2.4.1'
|
|
|
|
implementation 'androidx.fragment:fragment:1.4.1'
|
|
|
|
implementation 'androidx.slidingpanelayout:slidingpanelayout:1.2.0'
|
2022-05-10 17:56:13 +00:00
|
|
|
implementation 'com.google.android.material:material:1.6.0'
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2015-07-15 02:35:52 +00:00
|
|
|
// Android TV UI libraries.
|
2019-11-15 06:51:54 +00:00
|
|
|
implementation 'androidx.leanback:leanback:1.0.0'
|
|
|
|
implementation 'androidx.tvprovider:tvprovider:1.0.0'
|
2015-07-15 02:35:52 +00:00
|
|
|
|
2018-08-19 21:38:29 +00:00
|
|
|
// For REST calls
|
2022-01-05 18:39:54 +00:00
|
|
|
implementation 'com.android.volley:volley:1.2.1'
|
2018-08-19 21:38:29 +00:00
|
|
|
|
2015-05-07 00:12:58 +00:00
|
|
|
// For loading huge screenshots from the disk.
|
2018-10-27 14:05:09 +00:00
|
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
2016-01-09 17:28:29 +00:00
|
|
|
|
2019-03-07 03:14:58 +00:00
|
|
|
implementation 'com.nononsenseapps:filepicker:4.2.1'
|
2015-05-19 00:22:01 +00:00
|
|
|
}
|
2017-03-20 09:48:07 +00:00
|
|
|
|
|
|
|
def getVersion() {
|
2017-04-06 09:53:25 +00:00
|
|
|
def versionNumber = '0.0'
|
|
|
|
|
|
|
|
try {
|
|
|
|
versionNumber = 'git describe --always --long'.execute([], project.rootDir).text
|
|
|
|
.trim()
|
|
|
|
.replaceAll(/(-0)?-[^-]+$/, "")
|
|
|
|
} catch (Exception e) {
|
2021-05-10 10:27:34 +00:00
|
|
|
logger.error(e + ': Cannot find git, defaulting to dummy version number')
|
2017-03-24 03:33:12 +00:00
|
|
|
}
|
|
|
|
|
2017-04-06 09:53:25 +00:00
|
|
|
return versionNumber
|
2017-03-20 09:48:07 +00:00
|
|
|
}
|
2018-02-16 18:55:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
def getBuildVersionCode() {
|
|
|
|
try {
|
|
|
|
def versionNumber = 'git rev-list --first-parent --count HEAD'.execute([], project.rootDir).text
|
|
|
|
.trim()
|
2021-05-10 10:27:34 +00:00
|
|
|
return Integer.valueOf(versionNumber)
|
2018-02-16 18:55:37 +00:00
|
|
|
} catch (Exception e) {
|
2021-05-10 10:27:34 +00:00
|
|
|
logger.error(e + ': Cannot find git, defaulting to dummy version number')
|
2018-02-16 18:55:37 +00:00
|
|
|
}
|
|
|
|
|
2021-05-10 10:27:34 +00:00
|
|
|
return 1
|
2018-02-16 18:55:37 +00:00
|
|
|
}
|