Skip to content

Commit 4f6e17c

Browse files
committed
* change to target SDK 24
* change to compileSDK 24 * change to buildTools 24 * change to supportLibs 24 * update to gradle 2.14 * update android-iconics to v2.6.6 * udpate fastadapter to v1.5.5
1 parent bd0f32c commit 4f6e17c

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ android {
1212

1313
defaultConfig {
1414
minSdkVersion 10
15-
targetSdkVersion 23
15+
targetSdkVersion 24
1616
versionCode 567
1717
versionName '5.6.7'
1818

@@ -59,7 +59,7 @@ dependencies {
5959
// contains util classes to support various android versions, and clean up code
6060
// comes with the awesome "Holder"-Pattern
6161
// https://github.com/mikepenz/Materialize
62-
compile 'com.mikepenz:materialize:0.8.8@aar'
62+
compile 'com.mikepenz:materialize:0.9.0@aar'
6363

6464
//used to generate the drawer on the left
6565
//https://github.com/mikepenz/MaterialDrawer

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ buildscript {
1111
}
1212

1313
ext {
14-
compileSdkVersion = 23
15-
buildToolsVersion = "23.0.3"
16-
supportLibVersion = "23.4.0"
14+
compileSdkVersion = 24
15+
buildToolsVersion = "24.0.0"
16+
supportLibVersion = "24.0.0"
1717
}
1818

1919
allprojects {
@@ -25,5 +25,5 @@ allprojects {
2525
}
2626

2727
task wrapper(type: Wrapper) {
28-
gradleVersion = '2.13'
28+
gradleVersion = '2.14'
2929
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Fri May 13 16:30:32 CEST 2016
1+
#Sat Jun 18 19:01:27 CEST 2016
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.13-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-all.zip

library/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ android {
77

88
defaultConfig {
99
minSdkVersion 10
10-
targetSdkVersion 23
10+
targetSdkVersion 24
1111
versionCode 567
1212
versionName '5.6.7'
1313
}
@@ -36,10 +36,10 @@ dependencies {
3636
// used to provide out of the box icon font support. simplifies development,
3737
// and provides scalable icons. the core is very very light
3838
// https://github.com/mikepenz/Android-Iconics
39-
compile 'com.mikepenz:iconics-core:2.6.0@aar'
39+
compile 'com.mikepenz:iconics-core:2.6.6@aar'
4040

4141
// used to fill the RecyclerView with the items
4242
// and provides single and multi selection, expandable items
4343
// https://github.com/mikepenz/FastAdapter
44-
compile 'com.mikepenz:fastadapter:1.5.2@aar'
44+
compile 'com.mikepenz:fastadapter:1.5.5@aar'
4545
}

0 commit comments

Comments
 (0)