VancedMicroG/play-services-core/build.gradle

105 lines
3.1 KiB
Groovy
Raw Normal View History

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-29 05:33:53 +00:00
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
2015-01-03 14:27:50 +00:00
dependencies {
implementation 'com.squareup.wire:wire-runtime:3.6.1'
2020-08-10 03:59:29 +00:00
implementation 'de.hdodenhof:circleimageview:3.1.0'
implementation "info.armills.chromecast-java-api-v2:api-v2-raw-request:0.10.4-raw-request-1"
2022-02-05 11:44:50 +00:00
implementation 'androidx.webkit:webkit:1.4.0'
2018-04-25 23:25:14 +00:00
2021-06-27 19:53:47 +00:00
implementation project(':play-services-cronet-core')
2020-08-04 23:57: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
implementation project(':play-services-api')
implementation project(':play-services-cast-api')
2022-01-26 05:26:56 +00:00
implementation project(':play-services-tasks')
2020-07-09 07:53:37 +00:00
// AndroidX UI
2022-01-26 05:26:56 +00:00
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.mediarouter:mediarouter:1.2.6'
implementation 'androidx.preference:preference-ktx:1.2.0'
2020-07-29 05:47:50 +00:00
implementation "org.microg.gms:conscrypt-gmscore:2.5.1"
2022-01-26 05:26:56 +00:00
implementation 'androidx.annotation:annotation:1.3.0'
2022-03-08 19:18:59 +00:00
implementation 'androidx.lifecycle:lifecycle-service:2.4.1'
// Navigation
2022-03-08 19:18:59 +00:00
implementation 'androidx.navigation:navigation-fragment-ktx:2.4.1'
implementation 'androidx.navigation:navigation-ui-ktx:2.4.1'
2020-07-29 05:47:50 +00:00
2022-03-08 19:18:59 +00:00
implementation 'androidx.lifecycle:lifecycle-service:2.4.1'
2022-01-26 05:26:56 +00:00
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.10'
implementation 'com.android.volley:volley:1.2.1'
2020-11-19 14:56:44 +00:00
api project(':play-services-basement')
}
2015-01-03 14:27:50 +00:00
android {
2020-07-21 08:46:40 +00:00
compileSdkVersion androidCompileSdk
2022-01-26 05:26:56 +00:00
buildToolsVersion "30.0.3"
2015-01-03 14:27:50 +00:00
defaultConfig {
2020-07-09 07:53:37 +00:00
versionName version
2020-07-08 18:04:23 +00:00
versionCode appVersionCode
2020-07-08 18:04:23 +00:00
minSdkVersion androidMinSdk
targetSdkVersion androidTargetSdk
2020-07-21 10:05:05 +00:00
ndk {
2021-06-27 19:53:47 +00:00
abiFilters "armeabi-v7a", "arm64-v8a", "x86"
2020-07-21 10:05:05 +00:00
}
}
2020-07-21 09:23:05 +00:00
buildFeatures {
dataBinding = true
2021-03-22 03:04:09 +00:00
viewBinding = true
2020-07-08 18:04:23 +00:00
}
2015-01-03 14:27:50 +00:00
sourceSets {
main {
2020-07-29 05:33:53 +00:00
java.srcDirs += 'src/main/kotlin'
2015-01-03 14:27:50 +00:00
}
}
lintOptions {
2021-03-13 21:19:08 +00:00
disable 'MissingTranslation', 'BatteryLife', 'ImpliedQuantity', 'MissingQuantity', 'InvalidWakeLockTag', 'Range'
}
2016-03-05 12:47:43 +00:00
buildTypes {
release {
2020-07-21 08:46:40 +00:00
minifyEnabled true
2016-03-05 12:47:43 +00:00
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
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'
}