2016-03-03 17:46:31 +01:00
|
|
|
apply plugin: 'com.android.application'
|
2016-06-02 13:58:09 +02:00
|
|
|
apply plugin: 'android-apt'
|
2016-03-03 17:46:31 +01:00
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 23
|
2016-04-09 13:53:06 +02:00
|
|
|
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
|
2016-06-05 18:03:20 +02:00
|
|
|
versionCode 3
|
|
|
|
versionName "0.1.2"
|
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
|
2016-06-04 03:48:57 +02:00
|
|
|
compile 'com.android.support:appcompat-v7:23.4.0'
|
|
|
|
compile 'com.android.support:design:23.4.0'
|
|
|
|
compile 'com.android.support:support-v4:23.4.0'
|
2016-05-05 17:42:29 +02:00
|
|
|
|
|
|
|
// More libraries
|
|
|
|
compile 'com.getbase:floatingactionbutton:1.9.1'
|
2016-06-02 13:58:09 +02:00
|
|
|
compile 'com.jakewharton:butterknife:8.0.1'
|
2016-06-09 01:03:50 +02:00
|
|
|
compile 'info.guardianproject.netcipher:netcipher:1.2.1'
|
2016-06-02 13:58:09 +02:00
|
|
|
apt 'com.jakewharton:butterknife-compiler:8.0.1'
|
|
|
|
|
2016-03-03 17:46:31 +01:00
|
|
|
}
|