microg-gms/play-services-auth-workaccount/core/build.gradle

46 lines
956 B
Groovy
Raw Normal View History

2025-11-15 17:44:12 +01:00
/*
* SPDX-FileCopyrightText: 2023 e foundation
* SPDX-License-Identifier: Apache-2.0
*/
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
dependencies {
api project(':play-services-auth-workaccount')
api project(':play-services-auth')
implementation project(':play-services-base-core')
implementation "androidx.appcompat:appcompat:$appcompatVersion"
}
android {
namespace "org.microg.gms.auth.workaccount"
compileSdkVersion androidCompileSdk
buildToolsVersion "$androidBuildVersionTools"
defaultConfig {
versionName version
minSdkVersion androidMinSdk
targetSdkVersion androidTargetSdk
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
kotlinOptions {
jvmTarget = 1.8
}
lintOptions {
disable 'MissingTranslation'
}
}