1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2025-06-07 16:06:18 +00:00

Gradle, SDK & android support library update

This commit is contained in:
Loic Blot 2016-08-27 20:17:04 +02:00
parent 6203b8b989
commit 38c933477f

View File

@ -3,14 +3,14 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.1.2' classpath 'com.android.tools.build:gradle:2.1.3'
} }
} }
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 23 compileSdkVersion 24
buildToolsVersion "23.0.3" buildToolsVersion "23.0.3"
useLibrary 'org.apache.http.legacy' useLibrary 'org.apache.http.legacy'
@ -45,10 +45,10 @@ repositories {
dependencies { dependencies {
compile project(':owncloudAndroidLibrary') compile project(':owncloudAndroidLibrary')
compile 'com.android.support:support-v13:23.4.0' compile 'com.android.support:support-v13:24.2.0'
compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.android.support:appcompat-v7:24.2.0'
compile 'com.android.support:design:23.4.0' compile 'com.android.support:design:24.2.0'
compile 'in.srain.cube:ultra-ptr:1.0.11' compile 'in.srain.cube:ultra-ptr:1.0.11'
compile 'com.github.dmytrodanylyk.android-process-button:library:1.0.4' compile 'com.github.dmytrodanylyk.android-process-button:library:1.0.4'
compile 'com.android.support:support-v4:23.4.0' compile 'com.android.support:support-v4:24.2.0'
} }