Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "24.0.0"
buildToolsVersion "25.0.1"
defaultConfig {
applicationId "bottomnav.hitherejoe.com.bottomnavigationsample"
minSdkVersion 21
Expand All @@ -21,14 +21,14 @@ android {

dependencies {

final SUPPORT_LIBRARY_VERSION = '25.0.0'
final SUPPORT_LIBRARY_VERSION = '25.0.1'

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.0.1'
compile 'com.android.support:support-v4:25.0.1'
compile "com.android.support:design:$SUPPORT_LIBRARY_VERSION"
testCompile 'junit:junit:4.12'
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public boolean onNavigationItemSelected(@NonNull MenuItem item) {
textMusic.setVisibility(View.VISIBLE);
break;
}
return false;
return true;
}
});
}
Expand Down