/ play-services-wearable / build.gradle
build.gradle
1 /* 2 * SPDX-FileCopyrightText: 2015 microG Project Team 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6 apply plugin: 'com.android.library' 7 apply plugin: 'com.squareup.wire' 8 apply plugin: 'maven-publish' 9 apply plugin: 'signing' 10 11 android { 12 namespace "com.google.android.gms.wearable" 13 14 compileSdkVersion androidCompileSdk 15 buildToolsVersion "$androidBuildVersionTools" 16 17 buildFeatures { 18 aidl = true 19 } 20 21 defaultConfig { 22 versionName version 23 minSdkVersion androidMinSdk 24 targetSdkVersion androidTargetSdk 25 } 26 27 compileOptions { 28 sourceCompatibility = 1.8 29 targetCompatibility = 1.8 30 } 31 32 lintOptions { 33 disable 'InvalidPackage' 34 } 35 } 36 37 wire { 38 java { 39 40 } 41 } 42 43 apply from: '../gradle/publish-android.gradle' 44 45 description = 'microG implementation of play-services-wearable' 46 47 dependencies { 48 implementation "com.squareup.wire:wire-runtime:$wireVersion" 49 50 // Dependencies from play-services-wearable:17.1.0 51 api "androidx.core:core:1.0.0" 52 api project(':play-services-base') 53 api project(':play-services-basement') 54 api project(':play-services-tasks') 55 }