41 lines
855 B
Groovy
41 lines
855 B
Groovy
|
|
/*
|
||
|
|
* SPDX-FileCopyrightText: 2022 microG Project Team
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
apply plugin: 'com.android.library'
|
||
|
|
apply plugin: 'maven-publish'
|
||
|
|
apply plugin: 'signing'
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace "org.microg.gms.gmscompliance.api"
|
||
|
|
|
||
|
|
compileSdkVersion androidCompileSdk
|
||
|
|
buildToolsVersion "$androidBuildVersionTools"
|
||
|
|
|
||
|
|
buildFeatures {
|
||
|
|
aidl = true
|
||
|
|
}
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
versionName version
|
||
|
|
minSdkVersion androidMinSdk
|
||
|
|
targetSdkVersion androidTargetSdk
|
||
|
|
}
|
||
|
|
|
||
|
|
compileOptions {
|
||
|
|
sourceCompatibility = 1.8
|
||
|
|
targetCompatibility = 1.8
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
apply from: '../gradle/publish-android.gradle'
|
||
|
|
|
||
|
|
description = 'microG API for play-services-gmscompliance'
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
api project(':play-services-base')
|
||
|
|
|
||
|
|
implementation "androidx.annotation:annotation:$annotationVersion"
|
||
|
|
}
|