2015-03-13 02:15:24 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:1.0.1'
|
|
|
|
classpath 'com.github.dcendents:android-maven-plugin:1.2'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-13 00:41:14 +00: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')
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2015-03-13 02:15:24 +00:00
|
|
|
compileSdkVersion 22
|
2015-04-14 23:19:40 +00:00
|
|
|
buildToolsVersion "22.0.1"
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_6
|
|
|
|
}
|
2015-03-13 00:41:14 +00:00
|
|
|
}
|