2015-08-26 21:52:57 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
2015-08-26 22:12:16 +02:00
|
|
|
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 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|