mirror of
https://github.com/YTVanced/VancedMicroG
synced 2024-11-10 13:05:05 +00:00
36 lines
830 B
Groovy
36 lines
830 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'
|
|
|
|
android {
|
|
compileSdkVersion androidCompileSdk
|
|
buildToolsVersion "$androidBuildVersionTools"
|
|
|
|
defaultConfig {
|
|
versionName version
|
|
minSdkVersion androidMinSdk
|
|
targetSdkVersion androidTargetSdk
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
}
|
|
|
|
// Nothing to publish yet
|
|
//apply from: '../gradle/publish-android.gradle'
|
|
|
|
description = 'microG API for play-services-tapandpay'
|
|
|
|
dependencies {
|
|
api project(':play-services-basement')
|
|
api project(':play-services-base-api')
|
|
|
|
implementation "androidx.annotation:annotation:$annotationVersion"
|
|
}
|