/ play-services-location / build.gradle
build.gradle
1 /* 2 * SPDX-FileCopyrightText: 2015 microG Project Team 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6 apply plugin: 'com.android.library' 7 apply plugin: 'maven-publish' 8 apply plugin: 'signing' 9 10 android { 11 namespace "com.google.android.gms.location" 12 13 compileSdkVersion androidCompileSdk 14 buildToolsVersion "$androidBuildVersionTools" 15 16 buildFeatures { 17 aidl = true 18 } 19 20 defaultConfig { 21 versionName version 22 minSdkVersion androidMinSdk 23 targetSdkVersion androidTargetSdk 24 } 25 26 compileOptions { 27 sourceCompatibility JavaVersion.VERSION_1_8 28 targetCompatibility JavaVersion.VERSION_1_8 29 } 30 } 31 32 apply from: '../gradle/publish-android.gradle' 33 34 description = 'microG implementation of play-services-location' 35 36 dependencies { 37 // Dependencies from play-services-location:21.0.1 38 api project(':play-services-base') 39 api project(':play-services-basement') 40 api project(':play-services-tasks') 41 42 annotationProcessor project(':safe-parcel-processor') 43 }