mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-14 23:15:06 +00:00
39 lines
905 B
Groovy
39 lines
905 B
Groovy
|
/*
|
||
|
* SPDX-FileCopyrightText: 2021, microG Project Team
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
apply plugin: 'com.android.library'
|
||
|
apply plugin: 'maven-publish'
|
||
|
apply plugin: 'signing'
|
||
|
|
||
|
dependencies {
|
||
|
implementation("org.microg:cronet-api:$cronetVersion")
|
||
|
implementation("org.microg:cronet-common:$cronetVersion")
|
||
|
implementation("org.microg:cronet-native:$cronetVersion")
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion androidCompileSdk
|
||
|
buildToolsVersion "$androidBuildVersionTools"
|
||
|
|
||
|
defaultConfig {
|
||
|
versionName version
|
||
|
minSdkVersion androidMinSdk
|
||
|
targetSdkVersion androidTargetSdk
|
||
|
}
|
||
|
|
||
|
lintOptions {
|
||
|
disable 'MissingTranslation'
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility = 1.8
|
||
|
targetCompatibility = 1.8
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply from: '../gradle/publish-android.gradle'
|
||
|
|
||
|
description = 'microG service implementation for play-services-cronet'
|