/ play-services-fitness / build.gradle
build.gradle
 1  plugins {
 2      id 'com.android.library'
 3      id 'kotlin-android'
 4  }
 5  
 6  android {
 7      namespace "com.google.android.gms.fitness"
 8  
 9      compileSdkVersion androidCompileSdk
10      buildToolsVersion "$androidBuildVersionTools"
11  
12      buildFeatures {
13          aidl = true
14      }
15  
16      defaultConfig {
17          versionName version
18          minSdkVersion androidMinSdk
19          targetSdkVersion androidTargetSdk
20      }
21  
22      compileOptions {
23          sourceCompatibility = 1.8
24          targetCompatibility = 1.8
25      }
26  }
27  
28  dependencies {
29      // Dependencies from play-services-fitness:21.2.0
30      api 'androidx.collection:collection:1.0.0'
31      api project(':play-services-base')
32      api project(':play-services-basement')
33      api project(':play-services-tasks')
34  
35      annotationProcessor project(':safe-parcel-processor')
36  }