mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-01 00:42:39 +00:00
104 lines
3.2 KiB
Groovy
104 lines
3.2 KiB
Groovy
/*
|
|
* 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.
|
|
*/
|
|
|
|
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
dependencies {
|
|
implementation 'com.squareup.wire:wire-runtime:3.5.0'
|
|
implementation 'de.hdodenhof:circleimageview:3.1.0'
|
|
implementation "org.microg.gms:conscrypt-gmscore:2.5.1"
|
|
implementation "androidx.annotation:annotation:$annotationVersion"
|
|
// 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"
|
|
|
|
// Specified manually due to
|
|
// https://github.com/vitalidze/chromecast-java-api-v2/issues/91
|
|
|
|
implementation project(':play-services-core-proto')
|
|
implementation project(':play-services-core:microg-ui-tools') // deprecated
|
|
implementation project(':play-services-api')
|
|
implementation project(':play-services-cast-api')
|
|
|
|
// AndroidX UI
|
|
implementation "androidx.appcompat:appcompat:1.2.0"
|
|
implementation "androidx.mediarouter:mediarouter:1.2.0"
|
|
implementation "androidx.preference:preference-ktx:$preferenceVersion"
|
|
|
|
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.2'
|
|
implementation 'androidx.navigation:navigation-ui-ktx:2.3.2'
|
|
|
|
implementation "androidx.lifecycle:lifecycle-service:$lifecycleVersion"
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.21'
|
|
implementation project(path: ':play-services-basement')
|
|
|
|
api project(':play-services-location-api')
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion androidCompileSdk
|
|
buildToolsVersion "$androidBuildVersionTools"
|
|
|
|
defaultConfig {
|
|
versionName version
|
|
versionCode appVersionCode
|
|
|
|
minSdkVersion androidMinSdk
|
|
targetSdkVersion androidTargetSdk
|
|
|
|
ndk {
|
|
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
|
|
}
|
|
|
|
}
|
|
|
|
buildFeatures {
|
|
dataBinding = true
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java.srcDirs += 'src/main/kotlin'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'MissingTranslation', 'BatteryLife', 'ImpliedQuantity', 'MissingQuantity', 'InvalidWakeLockTag'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/ASL2.0'
|
|
}
|
|
}
|
|
|
|
if (file('user.gradle').exists()) {
|
|
apply from: 'user.gradle'
|
|
}
|