2019-04-22 19:51:53 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2013-2019 microG Project Team
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2019-05-26 23:04:13 +02:00
|
|
|
apply plugin: "com.android.library"
|
2019-04-22 19:51:53 +02:00
|
|
|
|
|
|
|
dependencies {
|
2019-05-26 23:04:13 +02:00
|
|
|
implementation project(":play-services-api")
|
2019-04-22 19:51:53 +02:00
|
|
|
|
2019-05-26 23:04:13 +02:00
|
|
|
implementation "org.microg:vtm-android:0.9.1-mod"
|
|
|
|
implementation "org.microg:vtm-android:0.9.1-mod:natives-armeabi"
|
|
|
|
implementation "org.microg:vtm-android:0.9.1-mod:natives-armeabi-v7a"
|
|
|
|
implementation "org.microg:vtm-android:0.9.1-mod:natives-arm64-v8a"
|
|
|
|
implementation "org.microg:vtm-android:0.9.1-mod:natives-x86"
|
|
|
|
implementation "org.microg:vtm-android:0.9.1-mod:natives-x86_64"
|
|
|
|
implementation "org.microg:vtm-extras:0.9.1-mod"
|
|
|
|
implementation "org.microg:vtm-jts:0.9.1-mod"
|
2020-07-09 09:53:37 +02:00
|
|
|
implementation project(":play-services-maps-core-vtm:vtm-microg-theme")
|
|
|
|
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
2019-04-22 19:51:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
def execResult(...args) {
|
|
|
|
def stdout = new ByteArrayOutputStream()
|
|
|
|
exec {
|
|
|
|
commandLine args
|
|
|
|
standardOutput = stdout
|
|
|
|
}
|
|
|
|
return stdout.toString().trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion androidCompileSdk()
|
|
|
|
buildToolsVersion "$androidBuildVersionTools"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
versionName "temp"
|
|
|
|
versionCode 1
|
|
|
|
|
|
|
|
minSdkVersion androidMinSdk()
|
|
|
|
targetSdkVersion androidTargetSdk()
|
|
|
|
|
|
|
|
ndk {
|
|
|
|
abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lintOptions {
|
2019-05-26 23:04:13 +02:00
|
|
|
disable "MissingTranslation", "InvalidPackage", "BatteryLife", "ImpliedQuantity", "MissingQuantity"
|
2019-04-22 19:51:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
2019-05-26 23:04:13 +02:00
|
|
|
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
|
2019-04-22 19:51:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-26 23:04:13 +02:00
|
|
|
if (file("user.gradle").exists()) {
|
|
|
|
apply from: "user.gradle"
|
2019-04-22 19:51:53 +02:00
|
|
|
}
|