2015-04-30 22:15:10 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-03-04 14:52:51 +00:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion '25.0.2'
|
2015-04-30 22:15:10 +00:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
// 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
|
2017-03-24 20:21:29 +00:00
|
|
|
targetSdkVersion 25
|
2015-06-08 22:07:26 +00:00
|
|
|
|
|
|
|
// TODO This should be set to the Buildbot build number for release builds, and be "1" for debug builds.
|
2017-03-20 10:25:23 +00:00
|
|
|
versionCode 13
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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"
|
2015-05-14 02:45:12 +00:00
|
|
|
}
|
2016-06-08 17:49:46 +00:00
|
|
|
}
|
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"
|
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
|
|
|
}
|
|
|
|
|
2017-03-20 09:48:07 +00:00
|
|
|
ext {
|
|
|
|
androidSupportVersion = '25.2.0'
|
|
|
|
}
|
|
|
|
|
2015-04-30 22:15:10 +00:00
|
|
|
dependencies {
|
2017-03-20 09:48:07 +00:00
|
|
|
compile "com.android.support:support-v13:$androidSupportVersion"
|
|
|
|
compile "com.android.support:cardview-v7:$androidSupportVersion"
|
|
|
|
compile "com.android.support:recyclerview-v7:$androidSupportVersion"
|
|
|
|
compile "com.android.support:design:$androidSupportVersion"
|
2015-05-07 00:12:58 +00:00
|
|
|
|
2015-07-15 02:35:52 +00:00
|
|
|
// Android TV UI libraries.
|
2017-03-20 09:48:07 +00:00
|
|
|
compile "com.android.support:leanback-v17:$androidSupportVersion"
|
2015-07-15 02:35:52 +00:00
|
|
|
|
2015-05-07 00:12:58 +00:00
|
|
|
// For showing the banner as a circle a-la Material Design Guidelines
|
2016-06-08 17:49:46 +00:00
|
|
|
compile 'de.hdodenhof:circleimageview:2.1.0'
|
2015-05-07 00:12:58 +00:00
|
|
|
|
|
|
|
// For loading huge screenshots from the disk.
|
2015-05-08 23:54:56 +00:00
|
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
2016-01-09 17:28:29 +00:00
|
|
|
|
|
|
|
// Allows FRP-style asynchronous operations in Android.
|
2016-06-08 17:49:46 +00:00
|
|
|
compile 'io.reactivex:rxandroid:1.2.1'
|
2015-05-19 00:22:01 +00:00
|
|
|
}
|
2017-03-20 09:48:07 +00:00
|
|
|
|
|
|
|
def getVersion() {
|
2017-03-20 12:09:33 +00:00
|
|
|
return 'git describe --always --long'.execute([], project.rootDir).text
|
|
|
|
.trim()
|
|
|
|
.replaceAll(/(-0)?-[^-]+$/, "")
|
2017-03-20 09:48:07 +00:00
|
|
|
}
|