/ play-services-iid / build.gradle
build.gradle
1 /* 2 * SPDX-FileCopyrightText: 2016 microG Project Team 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6 apply plugin: 'com.android.library' 7 8 android { 9 namespace "com.google.android.gms.iid" 10 11 compileSdkVersion androidCompileSdk 12 buildToolsVersion "$androidBuildVersionTools" 13 14 buildFeatures { 15 aidl = true 16 } 17 18 defaultConfig { 19 versionName version 20 minSdkVersion androidMinSdk 21 targetSdkVersion androidTargetSdk 22 } 23 24 compileOptions { 25 sourceCompatibility JavaVersion.VERSION_1_8 26 targetCompatibility JavaVersion.VERSION_1_8 27 } 28 } 29 30 dependencies { 31 // Dependencies from play-services-iid:17.0.0 32 api "androidx.collection:collection:1.0.0" 33 api "androidx.core:core:1.0.0" 34 api project(':play-services-base') 35 api project(':play-services-basement') 36 //api project(':play-services-stats') 37 api project(':play-services-tasks') 38 }