mirror of
https://github.com/moparisthebest/android_external_GmsApi
synced 2024-11-09 19:05:05 -05:00
c4db81d1fc
This reverts commit 7e2f3b8f7b
.
29 lines
510 B
Groovy
29 lines
510 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.0.0'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
dependencies {
|
|
compile project(':SafeParcel')
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 21
|
|
buildToolsVersion "21.1.2"
|
|
lintOptions.abortOnError false
|
|
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
java.srcDirs = ['src']
|
|
aidl.srcDirs = ['src']
|
|
}
|
|
}
|
|
}
|