android_external_SafeParcel/safe-parcel/build.gradle

20 lines
454 B
Groovy
Raw Normal View History

2015-01-05 21:55:57 -05:00
buildscript {
repositories {
mavenCentral()
}
dependencies {
2015-10-01 00:51:44 -04:00
classpath 'com.android.tools.build:gradle:1.3.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
2015-01-05 21:55:57 -05:00
}
}
apply plugin: 'com.android.library'
2015-10-01 00:51:44 -04:00
apply plugin: 'com.github.dcendents.android-maven'
2015-01-05 21:55:57 -05:00
android {
2015-03-29 15:07:37 -04:00
compileSdkVersion 22
2015-04-14 19:11:26 -04:00
buildToolsVersion "22.0.1"
2015-04-13 17:49:44 -04:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
}
2015-01-05 21:55:57 -05:00
}