55 lines
1.1 KiB
Groovy
55 lines
1.1 KiB
Groovy
/*
|
|
* SPDX-FileCopyrightText: 2015 microG Project Team
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
apply plugin: 'com.android.library'
|
|
apply plugin: 'com.squareup.wire'
|
|
apply plugin: 'maven-publish'
|
|
apply plugin: 'signing'
|
|
|
|
android {
|
|
namespace "com.google.android.gms.wearable"
|
|
|
|
compileSdkVersion androidCompileSdk
|
|
buildToolsVersion "$androidBuildVersionTools"
|
|
|
|
buildFeatures {
|
|
aidl = true
|
|
}
|
|
|
|
defaultConfig {
|
|
versionName version
|
|
minSdkVersion androidMinSdk
|
|
targetSdkVersion androidTargetSdk
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'InvalidPackage'
|
|
}
|
|
}
|
|
|
|
wire {
|
|
java {
|
|
|
|
}
|
|
}
|
|
|
|
apply from: '../gradle/publish-android.gradle'
|
|
|
|
description = 'microG implementation of play-services-wearable'
|
|
|
|
dependencies {
|
|
implementation "com.squareup.wire:wire-runtime:$wireVersion"
|
|
|
|
// Dependencies from play-services-wearable:17.1.0
|
|
api "androidx.core:core:1.0.0"
|
|
api project(':play-services-base')
|
|
api project(':play-services-basement')
|
|
api project(':play-services-tasks')
|
|
}
|