2015-02-01 22:27:46 +00:00
|
|
|
/*
|
2015-10-03 20:47:05 +00:00
|
|
|
* Copyright 2013-2015 microG Project Team
|
2015-02-05 01:56:42 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2015-02-01 22:27:46 +00:00
|
|
|
*/
|
|
|
|
|
2015-01-03 14:27:50 +00:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
dependencies {
|
2015-02-07 19:56:49 +00:00
|
|
|
compile 'de.hdodenhof:circleimageview:1.2.1'
|
2015-02-19 00:29:43 +00:00
|
|
|
compile 'com.squareup.wire:wire-runtime:1.6.1'
|
2016-01-12 22:27:43 +00:00
|
|
|
|
2016-09-24 19:19:26 +00:00
|
|
|
compile project(':microg-ui-tools')
|
2015-03-13 02:32:57 +00:00
|
|
|
compile project(':play-services-api')
|
2016-08-14 08:41:56 +00:00
|
|
|
compile project(':play-services-wearable')
|
2015-03-13 15:32:23 +00:00
|
|
|
compile project(':unifiednlp-base')
|
2015-11-17 16:20:13 +00:00
|
|
|
compile project(':wearable-lib')
|
2016-01-12 22:27:43 +00:00
|
|
|
|
2016-09-24 19:19:26 +00:00
|
|
|
compile project(':remote-droid-guard-lib')
|
|
|
|
|
2016-08-27 10:50:34 +00:00
|
|
|
compile project(':vtm-android')
|
|
|
|
compile project(':vtm-extras')
|
|
|
|
compile project(':vtm-jts')
|
2016-09-24 20:07:54 +00:00
|
|
|
compile project(':vtm-microg-theme')
|
2015-01-03 14:27:50 +00:00
|
|
|
}
|
|
|
|
|
2016-01-12 22:27:43 +00:00
|
|
|
String getMyVersionName() {
|
|
|
|
def stdout = new ByteArrayOutputStream()
|
2016-04-14 19:51:21 +00:00
|
|
|
if (rootProject.file("gradlew").exists())
|
2016-08-27 10:50:34 +00:00
|
|
|
exec {
|
|
|
|
commandLine 'git', 'describe', '--tags', '--always', '--dirty'; standardOutput = stdout
|
|
|
|
}
|
2016-04-14 19:51:21 +00:00
|
|
|
else // automatic build system, don't tag dirty
|
|
|
|
exec { commandLine 'git', 'describe', '--tags', '--always'; standardOutput = stdout }
|
|
|
|
return stdout.toString().trim().substring(1)
|
2016-01-12 22:27:43 +00:00
|
|
|
}
|
|
|
|
|
2016-05-11 23:51:52 +00:00
|
|
|
int getMyVersionCode() {
|
2016-01-12 22:27:43 +00:00
|
|
|
def stdout = new ByteArrayOutputStream()
|
|
|
|
exec {
|
2016-05-11 23:51:52 +00:00
|
|
|
commandLine 'git', 'rev-list', '--count', "HEAD"
|
2016-01-12 22:27:43 +00:00
|
|
|
standardOutput = stdout
|
|
|
|
}
|
|
|
|
return Integer.parseInt(stdout.toString().trim())
|
|
|
|
}
|
|
|
|
|
2015-01-03 14:27:50 +00:00
|
|
|
android {
|
2016-08-27 10:50:34 +00:00
|
|
|
compileSdkVersion androidCompileSdk()
|
|
|
|
buildToolsVersion "$androidBuildVersionTools"
|
2015-01-03 14:27:50 +00:00
|
|
|
|
2016-01-12 22:27:43 +00:00
|
|
|
defaultConfig {
|
2016-01-27 18:11:48 +00:00
|
|
|
versionName getMyVersionName()
|
2016-05-11 23:51:52 +00:00
|
|
|
def x = getMyVersionCode()
|
2016-03-14 18:11:20 +00:00
|
|
|
// We are not allowed to freely choose the hundreds column as it defines the device type
|
2017-03-21 18:08:22 +00:00
|
|
|
versionCode(10542400 + x % 100 + ((int) (x / 100)) * 1000)
|
2016-02-28 12:24:41 +00:00
|
|
|
|
2016-11-15 23:52:49 +00:00
|
|
|
minSdkVersion androidMinSdk()
|
|
|
|
targetSdkVersion androidTargetSdk()
|
|
|
|
|
2016-02-28 12:24:41 +00:00
|
|
|
ndk {
|
2017-01-15 21:52:11 +00:00
|
|
|
abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
|
2016-02-28 12:24:41 +00:00
|
|
|
}
|
2016-01-12 22:27:43 +00:00
|
|
|
}
|
|
|
|
|
2015-01-03 14:27:50 +00:00
|
|
|
sourceSets {
|
|
|
|
main {
|
2015-03-13 02:32:57 +00:00
|
|
|
java.srcDirs += 'src/main/protos-java'
|
2016-08-27 10:50:34 +00:00
|
|
|
file("${rootDir}/vtm-android/natives").eachDir() { dir ->
|
|
|
|
jniLibs.srcDirs += "${dir.path}/lib"
|
|
|
|
}
|
2015-01-03 14:27:50 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-27 10:50:34 +00:00
|
|
|
|
2015-07-04 11:47:27 +00:00
|
|
|
lintOptions {
|
2017-03-21 21:05:40 +00:00
|
|
|
disable 'MissingTranslation', 'InvalidPackage', 'BatteryLife', 'ImpliedQuantity', 'MissingQuantity'
|
2015-07-04 11:47:27 +00:00
|
|
|
}
|
2016-08-27 10:50:34 +00:00
|
|
|
|
2016-03-05 12:47:43 +00:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2015-01-03 14:27:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (file('user.gradle').exists()) {
|
|
|
|
apply from: 'user.gradle'
|
|
|
|
}
|