mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-01 08:52:39 +00:00
29 lines
677 B
Groovy
29 lines
677 B
Groovy
/*
|
|
* SPDX-FileCopyrightText: 2020, microG Project Team
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
dependencies {
|
|
api project(':play-services-basement')
|
|
|
|
implementation "androidx.annotation:annotation:$annotationVersion"
|
|
implementation "androidx.lifecycle:lifecycle-service:$lifecycleVersion"
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion androidCompileSdk
|
|
buildToolsVersion "$androidBuildVersionTools"
|
|
|
|
defaultConfig {
|
|
versionName version
|
|
minSdkVersion androidMinSdk
|
|
targetSdkVersion androidTargetSdk
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
}
|