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 {
|
2018-01-02 01:45:43 +01:00
|
|
|
implementation "com.android.support:support-v4:$supportLibraryVersion"
|
|
|
|
implementation "com.android.support:appcompat-v7:$supportLibraryVersion"
|
|
|
|
implementation "com.takisoft.fix:preference-v7:$supportLibraryVersion.0"
|
|
|
|
implementation "de.hdodenhof:circleimageview:1.3.0"
|
|
|
|
implementation "com.squareup.wire:wire-runtime:1.6.1"
|
2016-01-12 23:27:43 +01:00
|
|
|
|
2018-01-02 01:45:43 +01:00
|
|
|
implementation project(':microg-ui-tools')
|
|
|
|
implementation project(':play-services-api')
|
|
|
|
implementation project(':play-services-wearable')
|
|
|
|
implementation project(':unifiednlp-base')
|
|
|
|
implementation project(':wearable-lib')
|
2016-01-12 23:27:43 +01:00
|
|
|
|
2018-01-02 01:45:43 +01:00
|
|
|
implementation project(':remote-droid-guard-lib')
|
2016-09-24 21:19:26 +02:00
|
|
|
|
2018-01-02 01:45:43 +01:00
|
|
|
implementation project(':vtm-android')
|
|
|
|
implementation project(':vtm-extras')
|
|
|
|
implementation project(':vtm-jts')
|
|
|
|
implementation project(':vtm-microg-theme')
|
2015-01-03 15:27:50 +01:00
|
|
|
}
|
|
|
|
|
2018-06-13 19:37:49 +02:00
|
|
|
def execResult(...args) {
|
2016-01-12 23:27:43 +01:00
|
|
|
def stdout = new ByteArrayOutputStream()
|
|
|
|
exec {
|
2018-06-13 19:37:49 +02:00
|
|
|
commandLine args
|
2016-01-12 23:27:43 +01:00
|
|
|
standardOutput = stdout
|
|
|
|
}
|
2018-06-13 19:37:49 +02:00
|
|
|
return stdout.toString().trim()
|
2016-01-12 23:27:43 +01:00
|
|
|
}
|
|
|
|
|
2018-09-09 22:06:25 +02:00
|
|
|
def gmsVersion = "13.2.80"
|
2018-06-13 19:37:49 +02:00
|
|
|
def gmsVersionCode = Integer.parseInt(gmsVersion.replaceAll('\\.', ''))
|
|
|
|
def gitVersionBase = execResult('git', 'describe', '--tags', '--abbrev=0').substring(1)
|
|
|
|
def gitCommitCount = Integer.parseInt(execResult('git', 'rev-list', '--count', "v$gitVersionBase..HEAD"))
|
|
|
|
def gitCommitId = execResult('git', 'show-ref', '--abbrev=7', '--head', 'HEAD').split(' ')[0]
|
|
|
|
def gitDirty = execResult('git', 'status', '--porcelain').size() > 0
|
|
|
|
def ourVersionBase = gitVersionBase.substring(0, gitVersionBase.lastIndexOf('.'))
|
2018-09-09 22:06:25 +02:00
|
|
|
def ourVersionMinor = Integer.parseInt(ourVersionBase.substring(ourVersionBase.lastIndexOf('.') + 1))
|
|
|
|
def ourVersionCode = gmsVersionCode * 1000 + ourVersionMinor * 2 + (gitCommitCount > 0 || gitDirty ? 1 : 0)
|
|
|
|
def ourVersionName = "$ourVersionBase.$gmsVersionCode" + (gitCommitCount > 0 && !gitDirty ? "-$gitCommitCount" : "") + (gitDirty ? "-dirty" : "") + (gitCommitCount > 0 && !gitDirty ? " ($gitCommitId)" : "")
|
2018-06-13 19:37:49 +02:00
|
|
|
logger.lifecycle('Starting build for version {} ({})...', ourVersionName, ourVersionCode)
|
|
|
|
|
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 {
|
2018-06-13 19:37:49 +02:00
|
|
|
versionName ourVersionName
|
|
|
|
versionCode ourVersionCode
|
2016-02-28 13:24:41 +01:00
|
|
|
|
2016-11-16 00:52:49 +01:00
|
|
|
minSdkVersion androidMinSdk()
|
|
|
|
targetSdkVersion androidTargetSdk()
|
|
|
|
|
2016-02-28 13:24:41 +01:00
|
|
|
ndk {
|
2017-01-15 22:52:11 +01:00
|
|
|
abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
|
2016-02-28 13:24:41 +01:00
|
|
|
}
|
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 {
|
2017-03-21 22:05:40 +01:00
|
|
|
disable 'MissingTranslation', 'InvalidPackage', 'BatteryLife', 'ImpliedQuantity', 'MissingQuantity'
|
2015-07-04 13:47:27 +02:00
|
|
|
}
|
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'
|
|
|
|
}
|
|
|
|
}
|
2018-01-02 01:45:43 +01:00
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2015-01-03 15:27:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (file('user.gradle').exists()) {
|
|
|
|
apply from: 'user.gradle'
|
|
|
|
}
|