1
0
mirror of https://github.com/owncloud/android-library.git synced 2025-06-07 16:06:08 +00:00

Get rid of some warnings

This commit is contained in:
davigonz 2018-04-25 16:38:51 +02:00
parent 3bd29307a5
commit 1ff922af6a
4 changed files with 6 additions and 10 deletions

View File

@ -17,12 +17,11 @@ repositories {
dependencies { dependencies {
compile 'org.apache.jackrabbit:jackrabbit-webdav:2.12.4' compile 'org.apache.jackrabbit:jackrabbit-webdav:2.12.4'
compile 'com.squareup.okhttp3:okhttp:3.10.0' implementation 'com.squareup.okhttp3:okhttp:3.10.0'
} }
android { android {
compileSdkVersion 26 compileSdkVersion 26
buildToolsVersion '26.0.2'
sourceSets { sourceSets {
main { main {

View File

@ -5,12 +5,11 @@ repositories {
} }
dependencies { dependencies {
compile project(':') implementation project(':')
} }
android { android {
compileSdkVersion 26 compileSdkVersion 26
buildToolsVersion "26.0.2"
sourceSets { sourceSets {
main { main {

View File

@ -6,13 +6,12 @@ repositories {
} }
dependencies { dependencies {
compile 'commons-httpclient:commons-httpclient:3.1' implementation 'commons-httpclient:commons-httpclient:3.1'
compile project(':') implementation project(':')
} }
android { android {
compileSdkVersion 26 compileSdkVersion 26
buildToolsVersion "26.0.2"
sourceSets { sourceSets {
main { main {

View File

@ -1,13 +1,12 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
dependencies { dependencies {
compile fileTree(dir: 'libs', include: '*.jar') implementation fileTree(dir: 'libs', include: '*.jar')
compile project(':') implementation project(':')
} }
android { android {
compileSdkVersion 26 compileSdkVersion 26
buildToolsVersion "26.0.2"
sourceSets { sourceSets {
main { main {