File tree Expand file tree Collapse file tree 5 files changed +20
-15
lines changed Expand file tree Collapse file tree 5 files changed +20
-15
lines changed Original file line number Diff line number Diff line change @@ -2,18 +2,18 @@ apply plugin: 'com.android.library'
2
2
apply from : ' push.gradle'
3
3
4
4
android {
5
- compileSdkVersion 23
6
- buildToolsVersion " 23 .0.3 "
5
+ compileSdkVersion Integer . parseInt( TARGET_SDK_INT )
6
+ buildToolsVersion " 25 .0.1 "
7
7
8
8
defaultConfig {
9
- minSdkVersion 14
10
- targetSdkVersion 23
9
+ minSdkVersion Integer . parseInt( MIN_SDK_INT )
10
+ targetSdkVersion Integer . parseInt( TARGET_SDK_INT )
11
11
versionCode = Integer . parseInt(VERSION_CODE )
12
12
versionName = VERSION_NAME
13
13
}
14
14
}
15
15
16
16
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 '
19
19
}
Original file line number Diff line number Diff line change 1
1
The MIT License (MIT)
2
2
3
- Copyright (c) 2013-2015 Bearded Hen
3
+ Copyright (c) 2013-2016 Bearded Hen
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
this software and associated documentation files (the "Software"), to deal in
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ buildscript {
4
4
mavenCentral()
5
5
}
6
6
dependencies {
7
- classpath ' com.android.tools.build:gradle:2.1.2 '
7
+ classpath ' com.android.tools.build:gradle:2.2.3 '
8
8
}
9
9
}
10
10
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ VERSION_NAME=2.3.0
2
2
VERSION_CODE =230
3
3
GROUP =com.beardedhen
4
4
5
+ MIN_SDK_INT =14
6
+ TARGET_SDK_INT =25
7
+
5
8
POM_DESCRIPTION =Bootstrap style widgets for Android, with Glyph Icons
6
9
POM_URL =https://github.com/Bearded-Hen/Android-Bootstrap
7
10
POM_SCM_URL =https://github.com/Bearded-Hen/Android-Bootstrap
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion 23
5
- buildToolsVersion " 23 .0.3 "
4
+ compileSdkVersion Integer . parseInt( TARGET_SDK_INT )
5
+ buildToolsVersion " 25 .0.1 "
6
6
7
7
defaultConfig {
8
8
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 )
11
11
versionCode = Integer . parseInt(VERSION_CODE )
12
12
versionName = VERSION_NAME
13
13
}
@@ -28,7 +28,9 @@ android {
28
28
dependencies {
29
29
compile project (' :AndroidBootstrap' ) // replace with Maven dependency in your app
30
30
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'
34
36
}
You can’t perform that action at this time.
0 commit comments