1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2026-08-24 14:45:34 +00:00

Rewrite our HTTP Client to remove the owncloud library dependency and doing authentication ourselves

* Fixes issue #122
* Cleanup the code
* Drop owncloud library support, this will help the unofficial F-Droid build
This commit is contained in:
Loic Blot
2016-12-20 21:34:52 +01:00
parent f2082e5215
commit 25e2d13409
7 changed files with 69 additions and 176 deletions
+5 -6
View File
@@ -13,7 +13,6 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
useLibrary 'org.apache.http.legacy'
lintOptions {
abortOnError false
@@ -45,11 +44,11 @@ repositories {
}
dependencies {
compile project(':owncloudAndroidLibrary')
compile 'com.android.support:support-v13:25.0.1'
compile 'com.android.support:appcompat-v7:25.0.1'
compile 'com.android.support:design:25.0.1'
compile files('libs/commons-httpclient-3.1.jar')
compile 'com.android.support:support-v13:25.1.0'
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
compile 'in.srain.cube:ultra-ptr:1.0.11'
compile 'com.github.dmytrodanylyk.android-process-button:library:1.0.4'
compile 'com.android.support:support-v4:25.0.1'
compile 'com.android.support:support-v4:25.1.0'
}