From be68ad2a54c69927eede0f1ec60ba3328f0c29a8 Mon Sep 17 00:00:00 2001 From: Shagun Khemka Date: Sat, 10 Jun 2017 13:23:33 +0530 Subject: [PATCH] Changing the version of recyclerview As of using android studio 3.0 canary 1, it's suggesting to use the same library version specification as mixing version may lead to runtime crashes.Thus implementing the same. --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 1913b202..80dc7869 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -25,6 +25,6 @@ dependencies { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.android.support:appcompat-v7:25.1.0' - compile 'com.android.support:recyclerview-v7:25.0.1' + compile 'com.android.support:recyclerview-v7:25.1.0' testCompile 'junit:junit:4.12' }