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