File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,18 +2,18 @@ apply plugin: 'com.android.library'
22apply from : ' push.gradle'
33
44android {
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
1616dependencies {
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}
Original file line number Diff line number Diff line change 11The MIT License (MIT)
22
3- Copyright (c) 2013-2015 Bearded Hen
3+ Copyright (c) 2013-2016 Bearded Hen
44
55Permission is hereby granted, free of charge, to any person obtaining a copy of
66this 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 {
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
Original file line number Diff line number Diff line change @@ -2,6 +2,9 @@ VERSION_NAME=2.3.0
22VERSION_CODE =230
33GROUP =com.beardedhen
44
5+ MIN_SDK_INT =14
6+ TARGET_SDK_INT =25
7+
58POM_DESCRIPTION =Bootstrap style widgets for Android, with Glyph Icons
69POM_URL =https://github.com/Bearded-Hen/Android-Bootstrap
710POM_SCM_URL =https://github.com/Bearded-Hen/Android-Bootstrap
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.application'
22
33android {
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 {
2828dependencies {
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}
You can’t perform that action at this time.
0 commit comments