2015-02-01 22:27:46 +00:00
|
|
|
/*
|
2019-03-11 14:26:19 +00:00
|
|
|
* Copyright 2013-2019 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'
|
2020-07-26 09:59:27 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
2020-10-07 16:14:41 +00:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2020-07-26 09:59:27 +00:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2015-01-03 14:27:50 +00:00
|
|
|
|
2020-07-09 07:53:37 +00:00
|
|
|
configurations {
|
2020-10-07 16:14:41 +00:00
|
|
|
withMapboxImplementation
|
|
|
|
withVtmImplementation
|
|
|
|
withNearbyImplementation
|
|
|
|
withoutNearbyImplementation
|
2019-04-22 17:53:55 +00:00
|
|
|
}
|
|
|
|
|
2015-01-03 14:27:50 +00:00
|
|
|
dependencies {
|
2020-08-01 20:21:23 +00:00
|
|
|
implementation "com.squareup.wire:wire-runtime:$wireVersion"
|
2018-01-02 00:45:43 +00:00
|
|
|
implementation "de.hdodenhof:circleimageview:1.3.0"
|
2019-07-04 22:47:12 +00:00
|
|
|
implementation "org.conscrypt:conscrypt-android:2.1.0"
|
2018-09-03 18:48:24 +00:00
|
|
|
// TODO: Switch to upstream once raw requests are merged
|
|
|
|
// https://github.com/vitalidze/chromecast-java-api-v2/pull/99
|
|
|
|
// implementation "su.litvak.chromecast:api-v2:0.10.4"
|
|
|
|
implementation "info.armills.chromecast-java-api-v2:api-v2-raw-request:0.10.4-raw-request-1"
|
2018-04-25 23:25:14 +00:00
|
|
|
|
|
|
|
// Specified manually due to
|
|
|
|
// https://github.com/vitalidze/chromecast-java-api-v2/issues/91
|
|
|
|
api "org.slf4j:slf4j-api:1.7.25"
|
|
|
|
api "uk.uuid.slf4j:slf4j-android:1.7.25-1"
|
2016-01-12 22:27:43 +00:00
|
|
|
|
2020-01-01 12:50:56 +00:00
|
|
|
implementation project(':firebase-dynamic-links-api')
|
2020-09-27 09:40:22 +00:00
|
|
|
implementation project(':firebase-auth-core')
|
2020-07-08 18:04:23 +00:00
|
|
|
implementation project(':play-services-base-core')
|
2020-10-07 16:14:41 +00:00
|
|
|
implementation project(':play-services-base-core-ui')
|
2020-07-08 18:04:23 +00:00
|
|
|
implementation project(':play-services-location-core')
|
2020-10-07 16:14:41 +00:00
|
|
|
withNearbyImplementation project(':play-services-nearby-core')
|
|
|
|
withNearbyImplementation project(':play-services-nearby-core-ui')
|
2020-08-01 20:21:23 +00:00
|
|
|
implementation project(':play-services-core-proto')
|
2020-07-09 07:53:37 +00:00
|
|
|
implementation project(':play-services-core:microg-ui-tools') // deprecated
|
2018-01-02 00:45:43 +00:00
|
|
|
implementation project(':play-services-api')
|
2018-04-18 20:01:49 +00:00
|
|
|
implementation project(':play-services-cast-api')
|
2018-01-02 00:45:43 +00:00
|
|
|
implementation project(':play-services-wearable')
|
2020-07-08 18:04:23 +00:00
|
|
|
implementation "org.microg:wearable:$wearableVersion"
|
|
|
|
implementation "org.microg.gms:remote-droid-guard:$remoteDroidGuardVersion"
|
2016-01-12 22:27:43 +00:00
|
|
|
|
2020-10-07 16:14:41 +00:00
|
|
|
withMapboxImplementation project(':play-services-maps-core-mapbox')
|
|
|
|
withVtmImplementation project(':play-services-maps-core-vtm')
|
2020-07-09 07:53:37 +00:00
|
|
|
|
|
|
|
// AndroidX UI
|
|
|
|
implementation "androidx.multidex:multidex:$multidexVersion"
|
|
|
|
implementation "androidx.appcompat:appcompat:$appcompatVersion"
|
|
|
|
implementation "androidx.mediarouter:mediarouter:$mediarouterVersion"
|
|
|
|
implementation "androidx.preference:preference:$preferenceVersion"
|
2015-01-03 14:27:50 +00:00
|
|
|
|
2020-07-08 18:04:23 +00:00
|
|
|
// Navigation
|
|
|
|
implementation "androidx.navigation:navigation-fragment:$navigationVersion"
|
|
|
|
implementation "androidx.navigation:navigation-ui:$navigationVersion"
|
|
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
|
|
|
|
implementation "androidx.navigation:navigation-ui-ktx:$navigationVersion"
|
2020-07-26 09:59:27 +00:00
|
|
|
|
2020-07-26 11:39:51 +00:00
|
|
|
implementation "androidx.lifecycle:lifecycle-service:$lifecycleVersion"
|
2020-07-26 09:59:27 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
|
2016-01-12 22:27:43 +00:00
|
|
|
}
|
|
|
|
|
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 {
|
2020-07-09 07:53:37 +00:00
|
|
|
versionName version
|
2020-07-08 18:04:23 +00:00
|
|
|
versionCode appVersionCode
|
2016-02-28 12:24:41 +00:00
|
|
|
|
2020-07-08 18:04:23 +00:00
|
|
|
minSdkVersion androidMinSdk
|
|
|
|
targetSdkVersion androidTargetSdk
|
|
|
|
|
2019-05-27 11:21:28 +00:00
|
|
|
multiDexEnabled true
|
2020-07-29 20:13:53 +00:00
|
|
|
multiDexKeepProguard file('multidex-keep.pro')
|
2019-05-27 11:21:28 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-07-08 18:04:23 +00:00
|
|
|
dataBinding {
|
|
|
|
enabled = true
|
|
|
|
}
|
|
|
|
|
2015-01-03 14:27:50 +00:00
|
|
|
sourceSets {
|
|
|
|
main {
|
2020-07-26 09:59:27 +00:00
|
|
|
java.srcDirs += 'src/main/kotlin'
|
2015-01-03 14:27:50 +00:00
|
|
|
}
|
2020-10-07 16:14:41 +00:00
|
|
|
withNearby {
|
|
|
|
java.srcDirs += 'src/withNearby/kotlin'
|
|
|
|
}
|
|
|
|
withoutNearby {
|
|
|
|
java.srcDirs += 'src/withoutNearby/kotlin'
|
|
|
|
}
|
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 {
|
2019-04-22 17:51:53 +00:00
|
|
|
disable 'MissingTranslation', 'InvalidPackage', 'BatteryLife', 'ImpliedQuantity', 'MissingQuantity', 'InvalidWakeLockTag'
|
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 {
|
2020-07-08 18:04:23 +00:00
|
|
|
minifyEnabled false
|
2016-03-05 12:47:43 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2018-01-02 00:45:43 +00:00
|
|
|
|
2020-10-07 16:14:41 +00:00
|
|
|
flavorDimensions 'maps', 'nearby'
|
2020-07-09 07:53:37 +00:00
|
|
|
productFlavors {
|
2020-10-07 16:14:41 +00:00
|
|
|
withMapbox {
|
2020-07-09 07:53:37 +00:00
|
|
|
dimension 'maps'
|
|
|
|
}
|
2020-10-07 16:14:41 +00:00
|
|
|
withVtm {
|
2020-07-09 07:53:37 +00:00
|
|
|
dimension 'maps'
|
|
|
|
versionNameSuffix '-vtm'
|
|
|
|
}
|
2020-10-07 16:14:41 +00:00
|
|
|
withNearby {
|
|
|
|
dimension 'nearby'
|
|
|
|
}
|
|
|
|
withoutNearby {
|
|
|
|
dimension 'nearby'
|
|
|
|
versionNameSuffix '-noen'
|
|
|
|
}
|
2020-07-09 07:53:37 +00:00
|
|
|
}
|
|
|
|
|
2018-01-02 00:45:43 +00:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2018-04-25 23:25:14 +00:00
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/ASL2.0'
|
|
|
|
}
|
2015-01-03 14:27:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (file('user.gradle').exists()) {
|
|
|
|
apply from: 'user.gradle'
|
|
|
|
}
|