36 lines
790 B
Groovy
36 lines
790 B
Groovy
|
|
/*
|
||
|
|
* SPDX-FileCopyrightText: 2020 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.tasks"
|
||
|
|
|
||
|
|
compileSdkVersion androidCompileSdk
|
||
|
|
buildToolsVersion "$androidBuildVersionTools"
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
versionName version
|
||
|
|
minSdkVersion androidMinSdk
|
||
|
|
targetSdkVersion androidTargetSdk
|
||
|
|
}
|
||
|
|
|
||
|
|
compileOptions {
|
||
|
|
sourceCompatibility = 1.8
|
||
|
|
targetCompatibility = 1.8
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
apply from: '../gradle/publish-android.gradle'
|
||
|
|
|
||
|
|
description = 'microG implementation of play-services-tasks'
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
// Dependencies from play-services-tasks:18.4.0
|
||
|
|
api project(':play-services-basement')
|
||
|
|
}
|