Skip to content
Open
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
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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'
}