From 8a907db631846e73be25c5aedaa75caa21ceb679 Mon Sep 17 00:00:00 2001 From: Aidan Follestad Date: Tue, 21 Apr 2015 17:09:15 -0500 Subject: [PATCH] Updated Gradle plugin, along with all the library dependencies. Palette will be 6-8 times faster and bugs and other stuff were fixed in RecyclerView and the support library. Tint lists are also supported by DrawableCompat now. --- app/build.gradle | 36 ++++++++++++++++++++---------------- build.gradle | 7 +------ 2 files changed, 21 insertions(+), 22 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 71b77fbd..b0c91813 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath 'io.fabric.tools:gradle:1.16.0' + classpath 'io.fabric.tools:gradle:1.18.0' } } apply plugin: 'com.android.application' @@ -51,26 +51,30 @@ dependencies { compile('com.crashlytics.sdk.android:crashlytics:2.2.1@aar') { transitive = true; } - compile 'com.afollestad:material-dialogs:0.7.2.4' - compile 'com.android.support:appcompat-v7:22.0.0' - compile 'com.android.support:recyclerview-v7:22.0.0' - compile 'com.android.support:gridlayout-v7:22.0.0' - compile 'com.android.support:palette-v7:22.0.0' - compile 'com.android.support:support-v13:22.0.0' - compile 'com.android.support:cardview-v7:22.0.0' - compile 'com.nhaarman.listviewanimations:lib-core:3.1.0@aar' - compile 'com.nhaarman.listviewanimations:lib-manipulation:3.1.0@aar' - compile 'com.nhaarman.listviewanimations:lib-core-slh:3.1.0@aar' - compile 'com.nineoldandroids:library:2.4.0' - compile 'com.melnykov:floatingactionbutton:1.3.0' + + compile 'com.android.support:appcompat-v7:22.1.0' + compile 'com.android.support:recyclerview-v7:22.1.0' + compile 'com.android.support:gridlayout-v7:22.1.0' + compile 'com.android.support:palette-v7:22.1.0' + compile 'com.android.support:support-v13:22.1.0' + compile 'com.android.support:cardview-v7:22.1.0' + + compile 'com.nhaarman.listviewanimations:lib-core:+@aar' + compile 'com.nhaarman.listviewanimations:lib-manipulation:+@aar' + compile 'com.nhaarman.listviewanimations:lib-core-slh:+@aar' compile 'com.github.ksoichiro:android-observablescrollview:1.5.0' + compile 'asia.ivity.android:drag-sort-listview:1.0' + + compile 'com.nineoldandroids:library:2.4.0' + compile 'com.mcxiaoke.volley:library:1.0.15' compile 'com.squareup:otto:1.3.6' compile 'com.squareup.okhttp:okhttp:2.2.0' - compile 'asia.ivity.android:drag-sort-listview:1.0' compile 'de.hdodenhof:circleimageview:1.2.2' - compile 'com.jpardogo.materialtabstrip:library:1.0.9' - compile 'com.android.support:support-v4:22.0.0' compile 'com.koushikdutta.ion:ion:2.1.3' + + compile 'com.afollestad:material-dialogs:0.7.2.4' + compile 'com.jpardogo.materialtabstrip:library:1.0.9' compile 'com.readystatesoftware.systembartint:systembartint:1.0.3' + compile 'com.melnykov:floatingactionbutton:1.3.0' } diff --git a/build.gradle b/build.gradle index d3ff69d6..2d32f585 100644 --- a/build.gradle +++ b/build.gradle @@ -1,14 +1,9 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. - buildscript { repositories { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:1.1.0' - - // NOTE: Do not place your application dependencies here; they belong - // in the individual module build.gradle files + classpath 'com.android.tools.build:gradle:1.2.0-rc1' } }