2016-08-07 18:13:17 +02:00
|
|
|
/*
|
2020-07-12 19:02:35 +02:00
|
|
|
* SPDX-FileCopyrightText: 2020, microG Project Team
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2016-08-07 18:13:17 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
2020-11-18 17:06:29 +01:00
|
|
|
apply plugin: 'maven-publish'
|
|
|
|
apply plugin: 'signing'
|
2016-08-07 18:13:17 +02:00
|
|
|
|
|
|
|
android {
|
2020-07-08 20:04:23 +02:00
|
|
|
compileSdkVersion androidCompileSdk
|
2016-08-27 12:46:12 +02:00
|
|
|
buildToolsVersion "$androidBuildVersionTools"
|
2016-08-07 18:13:17 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2020-07-08 20:04:23 +02:00
|
|
|
versionName version
|
|
|
|
minSdkVersion androidMinSdk
|
|
|
|
targetSdkVersion androidTargetSdk
|
2016-08-07 18:13:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
2020-07-08 20:04:23 +02:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
2016-08-07 18:13:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-01-01 21:26:26 +01:00
|
|
|
api project(':play-services-basement')
|
2016-08-07 18:13:17 +02:00
|
|
|
}
|
2020-11-18 17:06:29 +01:00
|
|
|
|
|
|
|
apply from: '../gradle/publish-android.gradle'
|