/ play-services-gcm / 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.gcm" 10 11 compileSdkVersion androidCompileSdk 12 buildToolsVersion "$androidBuildVersionTools" 13 14 defaultConfig { 15 versionName version 16 minSdkVersion androidMinSdk 17 targetSdkVersion androidTargetSdk 18 } 19 20 compileOptions { 21 sourceCompatibility JavaVersion.VERSION_1_8 22 targetCompatibility JavaVersion.VERSION_1_8 23 } 24 } 25 26 dependencies { 27 // Dependencies from play-services-gcm:17.0.0 28 api "androidx.collection:collection:1.0.0" 29 api "androidx.core:core:1.0.0" 30 api 'androidx.legacy:legacy-support-core-utils:1.0.0' 31 api project(':play-services-base') 32 api project(':play-services-basement') 33 api project(':play-services-iid') 34 //api project(':play-services-stats') 35 }