32 lines
629 B
Groovy
Raw Normal View History

2015-08-26 21:52:57 +02:00
apply plugin: 'com.android.application'
dependencies {
compile project(':privileged-api-lib')
}
2015-08-26 21:52:57 +02:00
android {
compileSdkVersion 22
buildToolsVersion '23.0.0'
defaultConfig {
minSdkVersion 8
targetSdkVersion 22
versionCode 1001
versionName "0.1-alpha1"
2015-08-26 21:52:57 +02:00
}
compileOptions {
compileOptions.encoding = "UTF-8"
// Use Java 1.7, requires minSdk 8
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
lintOptions {
// Do not abort build if lint finds errors
abortOnError false
}
}