/* * SPDX-FileCopyrightText: 2020, microG Project Team * SPDX-License-Identifier: Apache-2.0 */ apply plugin: 'com.android.library' android { namespace 'com.google.firebase.auth' compileSdkVersion androidCompileSdk buildToolsVersion "$androidBuildVersionTools" buildFeatures { aidl = true } defaultConfig { versionName version minSdkVersion androidMinSdk targetSdkVersion androidTargetSdk } compileOptions { sourceCompatibility = 1.8 targetCompatibility = 1.8 } } dependencies { api project(':play-services-basement') annotationProcessor project(':safe-parcel-processor') }