VancedMicroG/play-services-api/build.gradle

27 lines
469 B
Groovy
Raw Normal View History

2015-01-06 03:05:25 +00:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
2015-02-10 14:29:44 +00:00
classpath 'com.android.tools.build:gradle:1.0.1'
2015-01-06 03:05:25 +00:00
}
}
apply plugin: 'com.android.library'
2015-03-30 21:49:40 +00:00
apply from: 'gradle-mvn-push.gradle'
2015-03-12 23:22:54 +00:00
2015-03-14 21:09:18 +00:00
group = 'org.microg'
2015-03-12 23:22:54 +00:00
version = '1.0-SNAPSHOT'
2015-01-06 03:05:25 +00:00
dependencies {
2015-03-14 21:09:18 +00:00
compile project(':safe-parcel')
2015-01-06 03:05:25 +00:00
}
android {
2015-03-30 21:49:40 +00:00
compileSdkVersion 22
buildToolsVersion "22.0.0"
2015-04-13 21:52:26 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
}
2015-01-06 03:05:25 +00:00
}