VancedMicroG/play-services-api/build.gradle

27 lines
469 B
Groovy
Raw Normal View History

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