2015-02-01 23:27:46 +01:00
|
|
|
/*
|
2015-10-03 22:47:05 +02:00
|
|
|
* Copyright 2013-2015 microG Project Team
|
2015-02-05 02:56:42 +01: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 23:27:46 +01:00
|
|
|
*/
|
|
|
|
|
2015-01-03 15:27:50 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
dependencies {
|
2015-02-07 20:56:49 +01:00
|
|
|
compile 'de.hdodenhof:circleimageview:1.2.1'
|
2015-02-19 01:29:43 +01:00
|
|
|
compile 'com.squareup.wire:wire-runtime:1.6.1'
|
2016-01-12 23:27:43 +01:00
|
|
|
|
|
|
|
compile project(":microg-ui-tools")
|
2015-03-13 03:32:57 +01:00
|
|
|
compile project(':play-services-api')
|
2016-08-14 10:41:56 +02:00
|
|
|
compile project(':play-services-wearable')
|
2015-03-13 16:32:23 +01:00
|
|
|
compile project(':unifiednlp-base')
|
2015-11-17 17:20:13 +01:00
|
|
|
compile project(':wearable-lib')
|
2016-01-12 23:27:43 +01:00
|
|
|
|
2016-08-27 12:50:34 +02:00
|
|
|
compile project(':vtm-android')
|
|
|
|
compile project(':vtm-extras')
|
|
|
|
compile project(':vtm-jts')
|
|
|
|
compile project(':vtm-themes')
|
2015-01-03 15:27:50 +01:00
|
|
|
}
|
|
|
|
|
2016-01-12 23:27:43 +01:00
|
|
|
String getMyVersionName() {
|
|
|
|
def stdout = new ByteArrayOutputStream()
|
2016-04-14 21:51:21 +02:00
|
|
|
if (rootProject.file("gradlew").exists())
|
2016-08-27 12:50:34 +02:00
|
|
|
exec {
|
|
|
|
commandLine 'git', 'describe', '--tags', '--always', '--dirty'; standardOutput = stdout
|
|
|
|
}
|
2016-04-14 21:51:21 +02: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 23:27:43 +01:00
|
|
|
}
|
|
|
|
|
2016-05-12 01:51:52 +02:00
|
|
|
int getMyVersionCode() {
|
2016-01-12 23:27:43 +01:00
|
|
|
def stdout = new ByteArrayOutputStream()
|
|
|
|
exec {
|
2016-05-12 01:51:52 +02:00
|
|
|
commandLine 'git', 'rev-list', '--count', "HEAD"
|
2016-01-12 23:27:43 +01:00
|
|
|
standardOutput = stdout
|
|
|
|
}
|
|
|
|
return Integer.parseInt(stdout.toString().trim())
|
|
|
|
}
|
|
|
|
|
2015-01-03 15:27:50 +01:00
|
|
|
android {
|
2016-08-27 12:50:34 +02:00
|
|
|
compileSdkVersion androidCompileSdk()
|
|
|
|
buildToolsVersion "$androidBuildVersionTools"
|
2015-01-03 15:27:50 +01:00
|
|
|
|
2016-01-12 23:27:43 +01:00
|
|
|
defaultConfig {
|
2016-01-27 19:11:48 +01:00
|
|
|
versionName getMyVersionName()
|
2016-05-12 01:51:52 +02:00
|
|
|
def x = getMyVersionCode()
|
2016-03-14 19:11:20 +01:00
|
|
|
// We are not allowed to freely choose the hundreds column as it defines the device type
|
2016-08-14 10:41:56 +02:00
|
|
|
versionCode(9450200 + x % 100 + ((int) (x / 100)) * 1000)
|
2016-02-28 13:24:41 +01:00
|
|
|
|
|
|
|
ndk {
|
|
|
|
abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86"
|
|
|
|
}
|
2016-01-12 23:27:43 +01:00
|
|
|
}
|
|
|
|
|
2015-01-03 15:27:50 +01:00
|
|
|
sourceSets {
|
|
|
|
main {
|
2015-03-13 03:32:57 +01:00
|
|
|
java.srcDirs += 'src/main/protos-java'
|
2016-08-27 12:50:34 +02:00
|
|
|
file("${rootDir}/vtm-android/natives").eachDir() { dir ->
|
|
|
|
jniLibs.srcDirs += "${dir.path}/lib"
|
|
|
|
}
|
2015-01-03 15:27:50 +01:00
|
|
|
}
|
|
|
|
}
|
2016-08-27 12:50:34 +02:00
|
|
|
|
2015-07-04 13:47:27 +02:00
|
|
|
lintOptions {
|
|
|
|
// TODO: Remove MissingTranslation once we have stable strings and proper translations.
|
|
|
|
disable 'MissingTranslation', 'InvalidPackage'
|
|
|
|
}
|
2016-08-27 12:50:34 +02:00
|
|
|
|
2016-03-05 13:47:43 +01:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2015-01-03 15:27:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (file('user.gradle').exists()) {
|
|
|
|
apply from: 'user.gradle'
|
|
|
|
}
|