2015-05-01 00:15:10 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-03-04 15:52:51 +01:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion '25.0.2'
|
2015-05-01 00:15:10 +02: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 05:28:39 +02:00
|
|
|
|
|
|
|
//Uncomment disable lines for test builds...
|
2016-07-22 02:26:09 +02:00
|
|
|
//disable 'MissingTranslation'
|
|
|
|
//disable 'ExtraTranslation'
|
2015-05-01 00:15:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
defaultConfig {
|
2015-06-16 21:42:11 +02:00
|
|
|
// TODO If this is ever modified, change application_id in strings.xml
|
2015-05-01 00:15:10 +02:00
|
|
|
applicationId "org.dolphinemu.dolphinemu"
|
2015-06-02 16:30:21 +02:00
|
|
|
minSdkVersion 21
|
2017-03-24 21:21:29 +01:00
|
|
|
targetSdkVersion 25
|
2015-06-09 00:07:26 +02:00
|
|
|
|
|
|
|
// TODO This should be set to the Buildbot build number for release builds, and be "1" for debug builds.
|
2017-03-20 11:25:23 +01:00
|
|
|
versionCode 13
|
2015-06-09 00:07:26 +02:00
|
|
|
|
2017-03-20 10:48:07 +01:00
|
|
|
versionName "${getVersion()}"
|
2015-05-01 00:15:10 +02: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 04:45:12 +02:00
|
|
|
// Define build types, which are orthogonal to product flavors.
|
2015-05-01 00:15:10 +02: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 21:42:11 +02:00
|
|
|
// TODO If this is ever modified, change application_id in debug/strings.xml
|
2015-05-01 00:15:10 +02:00
|
|
|
applicationIdSuffix ".debug"
|
|
|
|
versionNameSuffix '-debug'
|
|
|
|
jniDebuggable true
|
|
|
|
}
|
|
|
|
}
|
2015-05-14 04:45:12 +02:00
|
|
|
|
2016-06-08 19:49:46 +02:00
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
path "../../../CMakeLists.txt"
|
2015-05-14 04:45:12 +02:00
|
|
|
}
|
2016-06-08 19:49:46 +02:00
|
|
|
}
|
2015-05-14 04:45:12 +02: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"
|
2015-05-14 04:45:12 +02:00
|
|
|
}
|
2015-05-22 23:13:25 +02:00
|
|
|
}
|
2015-05-14 04:45:12 +02:00
|
|
|
}
|
2017-04-06 11:53:44 +02:00
|
|
|
|
|
|
|
applicationVariants.all { variant ->
|
|
|
|
variant.outputs.each { output ->
|
|
|
|
def name = output.outputFile.name.replace(variant.buildType.name, "${variant.versionName}")
|
|
|
|
name = name.replace("app", "dolphin")
|
|
|
|
output.outputFile = new File(output.outputFile.parent, name)
|
|
|
|
}
|
|
|
|
}
|
2015-05-01 00:15:10 +02:00
|
|
|
}
|
|
|
|
|
2017-03-20 10:48:07 +01:00
|
|
|
ext {
|
2017-05-04 09:21:31 +02:00
|
|
|
androidSupportVersion = '25.3.0'
|
2017-03-20 10:48:07 +01:00
|
|
|
}
|
|
|
|
|
2015-05-01 00:15:10 +02:00
|
|
|
dependencies {
|
2017-03-20 10:48:07 +01: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 02:12:58 +02:00
|
|
|
|
2015-07-15 04:35:52 +02:00
|
|
|
// Android TV UI libraries.
|
2017-03-20 10:48:07 +01:00
|
|
|
compile "com.android.support:leanback-v17:$androidSupportVersion"
|
2015-07-15 04:35:52 +02:00
|
|
|
|
2015-05-07 02:12:58 +02:00
|
|
|
// For showing the banner as a circle a-la Material Design Guidelines
|
2016-06-08 19:49:46 +02:00
|
|
|
compile 'de.hdodenhof:circleimageview:2.1.0'
|
2015-05-07 02:12:58 +02:00
|
|
|
|
|
|
|
// For loading huge screenshots from the disk.
|
2015-05-09 01:54:56 +02:00
|
|
|
compile 'com.squareup.picasso:picasso:2.5.2'
|
2016-01-09 18:28:29 +01:00
|
|
|
|
|
|
|
// Allows FRP-style asynchronous operations in Android.
|
2016-06-08 19:49:46 +02:00
|
|
|
compile 'io.reactivex:rxandroid:1.2.1'
|
2015-05-19 02:22:01 +02:00
|
|
|
}
|
2017-03-20 10:48:07 +01:00
|
|
|
|
|
|
|
def getVersion() {
|
2017-04-06 11:53:25 +02:00
|
|
|
def versionNumber = '0.0'
|
|
|
|
|
|
|
|
try {
|
|
|
|
versionNumber = 'git describe --always --long'.execute([], project.rootDir).text
|
|
|
|
.trim()
|
|
|
|
.replaceAll(/(-0)?-[^-]+$/, "")
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.error('Cannot find git, defaulting to dummy version number')
|
2017-03-24 04:33:12 +01:00
|
|
|
}
|
|
|
|
|
2017-04-06 11:53:25 +02:00
|
|
|
return versionNumber
|
2017-03-20 10:48:07 +01:00
|
|
|
}
|