Skip to content

Commit

Permalink
* change to target SDK 24
Browse files Browse the repository at this point in the history
* 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
* update materialize to v0.9.0
  • Loading branch information
mikepenz committed Jun 18, 2016
1 parent 330ccde commit db9d5a3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ dependencies {

// used to generate the Open Source section
// https://github.com/mikepenz/AboutLibraries
compile('com.mikepenz:aboutlibraries:5.6.6@aar') {
compile('com.mikepenz:aboutlibraries:5.6.8@aar') {
transitive = true
exclude module: "fastadapter"
}
Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
buildscript {
ext {
setup = [compileSdk: 23,
buildTools: "23.0.3",
setup = [compileSdk: 24,
buildTools: "24.0.0",
minSdk : 10,
targetSdk : 23]
targetSdk : 24]

versions = [supportLib: "23.4.0"]
versions = [supportLib: "24.0.0"]
}

repositories {
Expand All @@ -27,5 +27,5 @@ allprojects {
}

task wrapper(type: Wrapper) {
gradleVersion = '2.13'
gradleVersion = '2.14'
}
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue May 10 18:14:12 CEST 2016
#Sat Jun 18 19:13:54 CEST 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.13-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14-all.zip
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ dependencies {
// contains util classes to support various android versions, and clean up code
// comes with the awesome "Holder"-Pattern
// https://github.com/mikepenz/Materialize
compile 'com.mikepenz:materialize:0.8.8@aar'
compile 'com.mikepenz:materialize:0.9.0@aar'

// used to provide out of the box icon font support. simplifies development,
// and provides scalable icons. the core is very very light
// https://github.com/mikepenz/Android-Iconics
compile 'com.mikepenz:iconics-core:2.6.0@aar'
compile 'com.mikepenz:iconics-core:2.6.6@aar'

// used to fill the RecyclerView with the DrawerItems
// and provides single and multi selection, expandable items
// https://github.com/mikepenz/FastAdapter
compile 'com.mikepenz:fastadapter:1.5.2@aar'
compile 'com.mikepenz:fastadapter:1.5.5@aar'
}

0 comments on commit db9d5a3

Please sign in to comment.