mirror of
https://github.com/moparisthebest/android_external_GmsLib
synced 2025-03-03 18:21:49 -05:00
26 lines
567 B
Groovy
26 lines
567 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.3.1'
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
apply plugin: 'com.github.dcendents.android-maven'
|
|
|
|
dependencies {
|
|
compile 'com.android.support:support-v4:22.0.0'
|
|
compile project(':play-services-api')
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion "22.0.1"
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
}
|