2015-01-05 22:05:25 -05:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2015-02-10 09:29:44 -05:00
|
|
|
classpath 'com.android.tools.build:gradle:1.0.1'
|
2015-03-12 19:22:54 -04:00
|
|
|
classpath 'com.github.dcendents:android-maven-plugin:1.2'
|
2015-01-05 22:05:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
2015-03-12 19:22:54 -04:00
|
|
|
apply plugin: 'com.github.dcendents.android-maven'
|
|
|
|
|
|
|
|
group = 'org.microg.gms'
|
|
|
|
version = '1.0-SNAPSHOT'
|
2015-01-05 22:05:25 -05:00
|
|
|
|
|
|
|
dependencies {
|
2015-03-12 19:22:54 -04:00
|
|
|
compile project(':SafeParcel')
|
2015-01-05 22:05:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 21
|
2015-01-15 14:16:15 -05:00
|
|
|
buildToolsVersion "21.1.2"
|
2015-01-05 22:05:25 -05:00
|
|
|
}
|