Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/ncsms-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2016-12-20 23:34:52 +0300
committerLoic Blot <loic.blot@unix-experience.fr>2016-12-20 23:34:52 +0300
commit25e2d134099425fbdcac2422bcd5e781210bd10d (patch)
tree459da92aa6a2636ce81f19b35721df9e3caa87a7 /build.gradle
parentf2082e5215fe512acb9b9f79fa34a65e99aa6449 (diff)
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
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle11
1 files changed, 5 insertions, 6 deletions
diff --git a/build.gradle b/build.gradle
index 4fb148f..44aa49c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -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'
}