Skip to content

Commit 6fcd90b

Browse files
committed
update gradle dependencies
1 parent 1a9fab4 commit 6fcd90b

File tree

5 files changed

+20
-15
lines changed

5 files changed

+20
-15
lines changed

AndroidBootstrap/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ apply plugin: 'com.android.library'
22
apply from: 'push.gradle'
33

44
android {
5-
compileSdkVersion 23
6-
buildToolsVersion "23.0.3"
5+
compileSdkVersion Integer.parseInt(TARGET_SDK_INT)
6+
buildToolsVersion "25.0.1"
77

88
defaultConfig {
9-
minSdkVersion 14
10-
targetSdkVersion 23
9+
minSdkVersion Integer.parseInt(MIN_SDK_INT)
10+
targetSdkVersion Integer.parseInt(TARGET_SDK_INT)
1111
versionCode = Integer.parseInt(VERSION_CODE)
1212
versionName = VERSION_NAME
1313
}
1414
}
1515

1616
dependencies {
17-
compile 'com.android.support:support-annotations:23.3.0'
18-
compile 'com.android.support:support-v4:23.3.0'
17+
compile 'com.android.support:support-annotations:25.0.1'
18+
compile 'com.android.support:support-v4:25.0.1'
1919
}

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013-2015 Bearded Hen
3+
Copyright (c) 2013-2016 Bearded Hen
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
mavenCentral()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:2.1.2'
7+
classpath 'com.android.tools.build:gradle:2.2.3'
88
}
99
}
1010

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ VERSION_NAME=2.3.0
22
VERSION_CODE=230
33
GROUP=com.beardedhen
44

5+
MIN_SDK_INT=14
6+
TARGET_SDK_INT=25
7+
58
POM_DESCRIPTION=Bootstrap style widgets for Android, with Glyph Icons
69
POM_URL=https://github.com/Bearded-Hen/Android-Bootstrap
710
POM_SCM_URL=https://github.com/Bearded-Hen/Android-Bootstrap

sample/build.gradle

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 23
5-
buildToolsVersion "23.0.3"
4+
compileSdkVersion Integer.parseInt(TARGET_SDK_INT)
5+
buildToolsVersion "25.0.1"
66

77
defaultConfig {
88
applicationId "com.fractalwrench.androidbootstrap.sample"
9-
minSdkVersion 14
10-
targetSdkVersion 23
9+
minSdkVersion Integer.parseInt(MIN_SDK_INT)
10+
targetSdkVersion Integer.parseInt(TARGET_SDK_INT)
1111
versionCode = Integer.parseInt(VERSION_CODE)
1212
versionName = VERSION_NAME
1313
}
@@ -28,7 +28,9 @@ android {
2828
dependencies {
2929
compile project (':AndroidBootstrap') // replace with Maven dependency in your app
3030

31-
compile 'com.jakewharton:butterknife:7.0.1'
32-
compile 'com.android.support:appcompat-v7:23.4.0'
33-
compile 'com.android.support:support-annotations:23.4.0'
31+
compile 'com.jakewharton:butterknife:8.4.0'
32+
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
33+
34+
compile 'com.android.support:appcompat-v7:25.0.1'
35+
compile 'com.android.support:support-annotations:25.0.1'
3436
}

0 commit comments

Comments
 (0)