dandelion/app/build.gradle

40 lines
1006 B
Groovy
Raw Normal View History

2016-03-03 17:46:31 +01:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
2016-03-03 17:46:31 +01:00
useLibrary 'org.apache.http.legacy'
defaultConfig {
2016-03-29 19:38:50 +02:00
applicationId "com.github.dfa.diaspora_android"
2016-03-03 17:46:31 +01:00
minSdkVersion 15
targetSdkVersion 23
versionCode 1
2016-03-29 20:22:49 +02:00
versionName "0.1.0"
2016-03-03 17:46:31 +01:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
2016-05-05 17:42:29 +02:00
// Sub-Projects
//compile project(':subprojectFromRoot')
// Jars
2016-03-03 17:46:31 +01:00
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
2016-05-05 17:42:29 +02:00
// Android standard libs
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
2016-05-05 17:42:29 +02:00
compile 'com.android.support:support-v4:23.3.0'
// More libraries
compile 'com.jakewharton:butterknife:7.0.1'
2016-05-05 17:42:29 +02:00
compile 'com.getbase:floatingactionbutton:1.9.1'
2016-03-03 17:46:31 +01:00
}