42 lines
880 B
Groovy
42 lines
880 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 {
|
||
|
|
namespace "com.google.android.gms.tapandpay"
|
||
|
|
|
||
|
|
compileSdkVersion androidCompileSdk
|
||
|
|
buildToolsVersion "$androidBuildVersionTools"
|
||
|
|
|
||
|
|
buildFeatures {
|
||
|
|
aidl = true
|
||
|
|
}
|
||
|
|
|
||
|
|
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-base')
|
||
|
|
|
||
|
|
implementation "androidx.annotation:annotation:$annotationVersion"
|
||
|
|
}
|