45 lines
1,015 B
Groovy
45 lines
1,015 B
Groovy
|
|
/*
|
||
|
|
* SPDX-FileCopyrightText: 2023 microG Project Team
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
apply plugin: 'com.android.library'
|
||
|
|
apply plugin: 'maven-publish'
|
||
|
|
apply plugin: 'signing'
|
||
|
|
|
||
|
|
android {
|
||
|
|
namespace "com.google.android.gms.games"
|
||
|
|
|
||
|
|
compileSdkVersion androidCompileSdk
|
||
|
|
buildToolsVersion "$androidBuildVersionTools"
|
||
|
|
|
||
|
|
buildFeatures {
|
||
|
|
aidl = true
|
||
|
|
}
|
||
|
|
|
||
|
|
defaultConfig {
|
||
|
|
versionName version
|
||
|
|
minSdkVersion androidMinSdk
|
||
|
|
targetSdkVersion androidTargetSdk
|
||
|
|
}
|
||
|
|
|
||
|
|
compileOptions {
|
||
|
|
sourceCompatibility = 1.8
|
||
|
|
targetCompatibility = 1.8
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
apply from: '../gradle/publish-android.gradle'
|
||
|
|
|
||
|
|
description = 'microG implementation of play-services-games'
|
||
|
|
|
||
|
|
dependencies {
|
||
|
|
// Dependencies from play-services-games:23.1.0
|
||
|
|
api project(':play-services-base')
|
||
|
|
api project(':play-services-basement')
|
||
|
|
api project(':play-services-drive')
|
||
|
|
api project(':play-services-tasks')
|
||
|
|
|
||
|
|
annotationProcessor project(':safe-parcel-processor')
|
||
|
|
}
|