mirror of
https://github.com/gsantner/dandelion
synced 2024-11-05 12:06:01 +01:00
43 lines
1.1 KiB
Groovy
43 lines
1.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'android-apt'
|
|
|
|
android {
|
|
compileSdkVersion 24
|
|
buildToolsVersion "24.0.0"
|
|
useLibrary 'org.apache.http.legacy'
|
|
|
|
defaultConfig {
|
|
applicationId "com.github.dfa.diaspora_android"
|
|
minSdkVersion 15
|
|
targetSdkVersion 24
|
|
versionCode 4
|
|
versionName "0.1.3"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Sub-Projects
|
|
//compile project(':subprojectFromRoot')
|
|
|
|
// Jars
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
// Android standard libs
|
|
compile 'com.android.support:appcompat-v7:24.0.0'
|
|
compile 'com.android.support:design:24.0.0'
|
|
compile 'com.android.support:support-v4:24.0.0'
|
|
|
|
// More libraries
|
|
compile 'com.getbase:floatingactionbutton:1.9.1'
|
|
compile 'com.jakewharton:butterknife:8.0.1'
|
|
compile 'info.guardianproject.netcipher:netcipher:1.2.1'
|
|
apt 'com.jakewharton:butterknife-compiler:8.0.1'
|
|
|
|
}
|