From 92436639292232eb40c85629c9e02d33b898365e Mon Sep 17 00:00:00 2001 From: Raju Date: Tue, 11 Apr 2017 14:48:55 +0530 Subject: [PATCH] fixes https://github.com/hitherejoe/BottomNavigationViewSample/issues/8 --- app/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 935c4f3..962cf76 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,10 +2,10 @@ apply plugin: 'com.android.application' android { compileSdkVersion 25 - buildToolsVersion "24.0.0" + buildToolsVersion "25.0.2" defaultConfig { applicationId "bottomnav.hitherejoe.com.bottomnavigationsample" - minSdkVersion 21 + minSdkVersion 14 targetSdkVersion 25 versionCode 1 versionName "1.0" @@ -21,14 +21,14 @@ android { dependencies { - final SUPPORT_LIBRARY_VERSION = '25.0.0' + final SUPPORT_LIBRARY_VERSION = '25.2.0' compile fileTree(dir: 'libs', include: ['*.jar']) androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:25.0.0' - compile 'com.android.support:support-v4:25.0.0' + compile 'com.android.support:appcompat-v7:25.2.0' + compile 'com.android.support:support-v4:25.2.0' compile "com.android.support:design:$SUPPORT_LIBRARY_VERSION" testCompile 'junit:junit:4.12' }