mirror of
https://github.com/gsantner/dandelion
synced 2024-11-05 03:56:01 +01:00
33 lines
826 B
Groovy
33 lines
826 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.2"
|
|
useLibrary 'org.apache.http.legacy'
|
|
|
|
defaultConfig {
|
|
applicationId "de.baumann.diaspora"
|
|
minSdkVersion 15
|
|
targetSdkVersion 23
|
|
versionCode 16
|
|
versionName "1.2.1"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.android.support:appcompat-v7:23.1.1'
|
|
compile 'com.android.support:design:23.1.1'
|
|
compile 'com.getbase:floatingactionbutton:1.9.1'
|
|
}
|