android_external_GmsApi/play-services-api/build.gradle

25 lines
509 B
Groovy
Raw Normal View History

2015-01-05 22:05:25 -05:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
2015-09-30 01:26:24 -04:00
classpath 'com.android.tools.build:gradle:1.3.1'
2015-10-01 00:52:17 -04:00
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
2015-01-05 22:05:25 -05:00
}
}
apply plugin: 'com.android.library'
2015-10-01 00:52:17 -04:00
apply plugin: 'com.github.dcendents.android-maven'
2015-01-05 22:05:25 -05:00
dependencies {
2015-03-14 17:09:18 -04:00
compile project(':safe-parcel')
2015-01-05 22:05:25 -05:00
}
android {
2015-03-30 17:49:40 -04:00
compileSdkVersion 22
2015-04-14 17:13:02 -04:00
buildToolsVersion "22.0.1"
2015-04-13 17:52:26 -04:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
}
2015-01-05 22:05:25 -05:00
}