From eb64eeac6dc6432a56f44540c7e0568c302270fe Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Mon, 29 Feb 2016 19:04:50 +0100 Subject: [PATCH 1/6] * update the sample app dependencies --- app/build.gradle | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 4d3d554d..60f53829 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -58,21 +58,34 @@ dependencies { compile "com.android.support:recyclerview-v7:${rootProject.ext.supportLibVersion}" compile "com.android.support:cardview-v7:${rootProject.ext.supportLibVersion}" + // used to base on some backwards compatible themes + // 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.5@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.2.1@aar' + //used to generate the drawer on the left //https://github.com/mikepenz/MaterialDrawer - compile('com.mikepenz:materialdrawer:5.0.6-SNAPSHOT@aar') { + compile('com.mikepenz:materialdrawer:5.0.9@aar') { transitive = true + exclude module: "fastadapter" exclude module: "iconics-core" } // used to generate the Open Source section // https://github.com/mikepenz/AboutLibraries - compile('com.mikepenz:aboutlibraries:5.5.7-SNAPSHOT@aar') { + compile('com.mikepenz:aboutlibraries:5.5.7@aar') { transitive = true exclude module: "fastadapter" exclude module: "iconics-core" } + compile project(':fontawesome-typeface-library') compile project(':material-design-iconic-typeface-library') compile project(':google-material-typeface-library') From 5acca2db0605e2f917600f33f5b84f297e7a3b24 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Mon, 29 Feb 2016 19:05:02 +0100 Subject: [PATCH 2/6] * update the gradle build tools --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index a964b0bb..20d73fc0 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.0.0-beta5' + classpath 'com.android.tools.build:gradle:2.0.0-beta6' classpath 'com.novoda:bintray-release:0.3.4' } } From 35449dcebedde08e6db14846a74729a42838ce27 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Fri, 11 Mar 2016 15:30:51 +0100 Subject: [PATCH 3/6] * update sample app dependencies --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 60f53829..23d0d6a8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -62,7 +62,7 @@ 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.5@aar' + compile 'com.mikepenz:materialize:0.8.6@aar' // used to fill the RecyclerView with the DrawerItems // and provides single and multi selection, expandable items @@ -71,7 +71,7 @@ dependencies { //used to generate the drawer on the left //https://github.com/mikepenz/MaterialDrawer - compile('com.mikepenz:materialdrawer:5.0.9@aar') { + compile('com.mikepenz:materialdrawer:5.1.2@aar') { transitive = true exclude module: "fastadapter" exclude module: "iconics-core" From 206c8356c3ba91ff3dfca9377912c2c35a88d63e Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Fri, 11 Mar 2016 15:31:11 +0100 Subject: [PATCH 4/6] * switch to stable android gradle build tools --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 20d73fc0..8b430708 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.0.0-beta6' + classpath 'com.android.tools.build:gradle:1.5.0' classpath 'com.novoda:bintray-release:0.3.4' } } From 9487bddfebeab441b63b0c0aec33e2c9395a3baf Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Fri, 11 Mar 2016 15:31:28 +0100 Subject: [PATCH 5/6] * update to latest android support libraries v23.2.1 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8b430708..49534fa5 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ buildscript { ext { compileSdkVersion = 23 buildToolsVersion = "23.0.2" - supportLibVersion = "23.2.0" + supportLibVersion = "23.2.1" minSdkVersion = 10 targetSdkVersion = 23 From 4fb05888b33262d5d7d04fa06a4316076ba30731 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Fri, 11 Mar 2016 15:33:47 +0100 Subject: [PATCH 6/6] * [release] v2.5.9 --- README.md | 2 +- app/build.gradle | 4 ++-- library-core/build.gradle | 4 ++-- library-core/gradle.properties | 4 ++-- .../src/main/res/values/library_androidiconics_strings.xml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 0545e477..f967265c 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Provide additional fonts for you project, or even create your custom font with j ##1. Provide the gradle dependency ```gradle dependencies { - compile 'com.mikepenz:iconics-core:2.5.8@aar' + compile 'com.mikepenz:iconics-core:2.5.9@aar' } ``` diff --git a/app/build.gradle b/app/build.gradle index 23d0d6a8..7e0a98ea 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -12,8 +12,8 @@ android { defaultConfig { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 2581 - versionName "2.5.8.1" + versionCode 2591 + versionName "2.5.9.1" enforceUniquePackageName false } diff --git a/library-core/build.gradle b/library-core/build.gradle index c5c4f233..ab387eab 100644 --- a/library-core/build.gradle +++ b/library-core/build.gradle @@ -7,8 +7,8 @@ android { defaultConfig { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 258 - versionName "2.5.8" + versionCode 259 + versionName "2.5.9" } buildTypes { release { diff --git a/library-core/gradle.properties b/library-core/gradle.properties index a7080996..7768341c 100755 --- a/library-core/gradle.properties +++ b/library-core/gradle.properties @@ -12,8 +12,8 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -VERSION_NAME=2.5.8 -VERSION_CODE=258 +VERSION_NAME=2.5.9 +VERSION_CODE=259 POM_NAME=Android-Iconics Library POM_ARTIFACT_ID=iconics-core diff --git a/library-core/src/main/res/values/library_androidiconics_strings.xml b/library-core/src/main/res/values/library_androidiconics_strings.xml index 91807c13..b01bf22f 100755 --- a/library-core/src/main/res/values/library_androidiconics_strings.xml +++ b/library-core/src/main/res/values/library_androidiconics_strings.xml @@ -25,7 +25,7 @@ This library allows you to include vector icons everywhere in your project. No limits are given. Scale with no limit, use any Color at any time, provide a contour, and many additional customizations ]]> - 2.5.8 + 2.5.9 https://github.com/mikepenz/Android-Iconics apache_2_0 true