/ fake-signature / build.gradle
build.gradle
1 /* 2 * SPDX-FileCopyrightText: 2023 microG Project Team 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6 apply plugin: 'com.android.library' 7 8 android { 9 namespace 'org.microg.signature.fake' 10 compileSdk androidCompileSdk 11 12 defaultConfig { 13 minSdk androidMinSdk 14 targetSdk androidTargetSdk 15 } 16 17 flavorDimensions = ['target'] 18 productFlavors { 19 "default" { 20 dimension 'target' 21 } 22 "huawei" { 23 dimension 'target' 24 } 25 } 26 27 buildFeatures { 28 aidl = true 29 } 30 31 compileOptions { 32 sourceCompatibility JavaVersion.VERSION_1_8 33 targetCompatibility JavaVersion.VERSION_1_8 34 } 35 } 36 37 dependencies { 38 }