2015-03-12 22:15:24 -04:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2015-09-30 01:27:17 -04:00
|
|
|
classpath 'com.android.tools.build:gradle:1.3.1'
|
|
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
|
2015-03-12 22:15:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-12 20:41:14 -04:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'com.github.dcendents.android-maven'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':play-services-base')
|
|
|
|
compile project(':play-services-location')
|
|
|
|
compile project(':play-services-wearable')
|
2015-10-01 00:56:58 -04:00
|
|
|
compile project(':play-services-cast')
|
2015-03-12 20:41:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2015-03-12 22:15:24 -04:00
|
|
|
compileSdkVersion 22
|
2015-04-14 19:19:40 -04:00
|
|
|
buildToolsVersion "22.0.1"
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_6
|
|
|
|
}
|
2015-03-12 20:41:14 -04:00
|
|
|
}
|