From 2e060d7a39603aadf0e6a130f350fe4df8f50fb8 Mon Sep 17 00:00:00 2001 From: Konstantinos Papageorgiou Date: Tue, 13 Sep 2016 12:07:11 +0300 Subject: [PATCH 01/16] Add 'European Capital of Culture - Pafos2017' to the apps list --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 99f1cbeef..71243aa33 100644 --- a/README.md +++ b/README.md @@ -419,6 +419,7 @@ builder.withDrawerLayout(R.layout.material_drawer); * [Atmosphere](https://play.google.com/store/apps/details?id=com.peakpocketstudios.atmosphere) * [Slidechat](https://play.google.com/store/apps/details?id=com.taddu.adfree.slidechat) * [Fitness Challenge](https://play.google.com/store/apps/details?id=com.isidroid.fitchallenge) +* [European Capital of Culture - Pafos2017 official app](https://play.google.com/store/apps/details?id=com.trackandtalk.pafos17) #Articles about the MaterialDrawer * [java-help.ru](http://java-help.ru/material-navigationdrawer/) From bdcc5a2d20baea8c092b9b7c655bf26766947058 Mon Sep 17 00:00:00 2001 From: Ahmet Uzun Date: Fri, 16 Sep 2016 16:35:39 +0300 Subject: [PATCH 02/16] Update README.md Added a new application (I'm Reading Quran) to the "Apps using the MaterialDrawer" section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 71243aa33..eddbe88f9 100644 --- a/README.md +++ b/README.md @@ -420,6 +420,7 @@ builder.withDrawerLayout(R.layout.material_drawer); * [Slidechat](https://play.google.com/store/apps/details?id=com.taddu.adfree.slidechat) * [Fitness Challenge](https://play.google.com/store/apps/details?id=com.isidroid.fitchallenge) * [European Capital of Culture - Pafos2017 official app](https://play.google.com/store/apps/details?id=com.trackandtalk.pafos17) +* [I'm Reading Quran - Kur'an Okuyorum](https://play.google.com/store/apps/details?id=com.homemade.kuranokuma) #Articles about the MaterialDrawer * [java-help.ru](http://java-help.ru/material-navigationdrawer/) From 464f7a63d65b34a395ebcddfaf3d42ea79badf8e Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Sat, 24 Sep 2016 22:46:47 +0300 Subject: [PATCH 03/16] add posibility to set rotation angle for example when we put param withRotationAngle(90) it will allow arrow rotation from state > to V and then back from V to > --- .../materialdrawer/model/ExpandableDrawerItem.java | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java b/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java index b516bbdbd..a43d0934f 100644 --- a/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java +++ b/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java @@ -29,6 +29,8 @@ public class ExpandableDrawerItem extends BaseDescribeableDrawerItem Date: Sun, 25 Sep 2016 19:56:37 +0300 Subject: [PATCH 04/16] added arrowRotationAngleStart and arrowRotationAngleEnd now we can manage differend kind of arrow rotation just to set positive or netative values to get rotation in different side --- .../model/ExpandableDrawerItem.java | 21 ++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java b/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java index a43d0934f..2605f083b 100644 --- a/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java +++ b/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java @@ -29,7 +29,9 @@ public class ExpandableDrawerItem extends BaseDescribeableDrawerItem Date: Sun, 25 Sep 2016 20:04:13 +0300 Subject: [PATCH 05/16] added arrowRotationAngleStart and arrowRotationAngleEnd now we can manage differend kind of arrow rotation just to set positive or netative values to get rotation in different side --- .../com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java b/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java index 2605f083b..e077186a4 100644 --- a/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java +++ b/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java @@ -108,7 +108,7 @@ public void bindView(ViewHolder viewHolder, List payloads) { if (!isExpanded()) { ViewCompat.setRotation(viewHolder.arrow, this.arrowRotationAngleStart); } else { - ViewCompat.setRotation(viewHolder.arrow, -1 * this.arrowRotationAngleEnd); + ViewCompat.setRotation(viewHolder.arrow, this.arrowRotationAngleEnd); } //call the onPostBindView method to trigger post bind view actions (like the listener to modify the item if required) From 4cbaa72bcf5fd72fc4aab08e6bff738c93fd34bf Mon Sep 17 00:00:00 2001 From: Chris54721 Date: Sat, 1 Oct 2016 18:33:25 +0200 Subject: [PATCH 06/16] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eddbe88f9..fe84bcb0b 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ There is a Header with profiles (**AccountHeader**), a **MiniDrawer** for Table ###A quick overview what's in - **the easiest possible integration** - integrate in less than **5 minutes** -- compatible down to **API Level 10** +- compatible down to **API Level 14** - includes an **AccountSwitcher** - quick and simple api - follows the **Google Material Design Guidelines** From a4abf301d3a058881ffbf407683e877a840fdd1a Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Tue, 4 Oct 2016 18:03:05 +0200 Subject: [PATCH 07/16] * update to fastadapter v2.0.0.b2 * adjust interfaces and `AbstractDrawerItem` to fit the new `IExpandable` interface --- library/build.gradle | 2 +- .../model/AbstractDrawerItem.java | 37 ++++++++++++++++++- .../model/ExpandableDrawerItem.java | 1 - .../model/interfaces/IDrawerItem.java | 8 +++- 4 files changed, 43 insertions(+), 5 deletions(-) diff --git a/library/build.gradle b/library/build.gradle index a519f4a3e..bd8b0fc31 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -47,5 +47,5 @@ dependencies { // 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.8.0@aar' + compile 'com.mikepenz:fastadapter:2.0.0.b2-SNAPSHOT@aar' } diff --git a/library/src/main/java/com/mikepenz/materialdrawer/model/AbstractDrawerItem.java b/library/src/main/java/com/mikepenz/materialdrawer/model/AbstractDrawerItem.java index a8f3a1689..986b6ef80 100644 --- a/library/src/main/java/com/mikepenz/materialdrawer/model/AbstractDrawerItem.java +++ b/library/src/main/java/com/mikepenz/materialdrawer/model/AbstractDrawerItem.java @@ -6,7 +6,6 @@ import android.view.View; import android.view.ViewGroup; -import com.mikepenz.fastadapter.IExpandable; import com.mikepenz.fastadapter.utils.IdDistributor; import com.mikepenz.fastadapter.utils.ViewHolderFactory; import com.mikepenz.materialdrawer.Drawer; @@ -22,7 +21,7 @@ /** * Created by mikepenz on 14.07.15. */ -public abstract class AbstractDrawerItem implements IDrawerItem, Selectable, Tagable, IExpandable { +public abstract class AbstractDrawerItem implements IDrawerItem, Selectable, Tagable { // the identifier for this item protected long mIdentifier = -1; @@ -186,6 +185,29 @@ public void onPostBindView(IDrawerItem drawerItem, View view) { } } + // the parent of this item + private IDrawerItem mParent; + + /** + * @return the parent of this item + */ + @Override + public IDrawerItem getParent() { + return mParent; + } + + /** + * the parent for this item + * + * @param parent it's parent + * @return this + */ + @Override + public IDrawerItem withParent(IDrawerItem parent) { + this.mParent = parent; + return this; + } + // the subItems to expand for this item protected List mSubItems; @@ -262,6 +284,7 @@ public boolean isAutoExpanding() { */ public abstract ViewHolderFactory getFactory(); + /** * generates a view by the defined LayoutRes * @@ -289,6 +312,16 @@ public View generateView(Context ctx, ViewGroup parent) { return viewHolder.itemView; } + /** + * called when the view is unbound + * + * @param holder + */ + @Override + public void unbindView(VH holder) { + + } + /** * This method returns the ViewHolder for our item, using the provided View. * By default it will try to get the ViewHolder from the ViewHolderFactory. If this one is not implemented it will go over the generic way, wasting ~5ms diff --git a/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java b/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java index e077186a4..07afcf404 100644 --- a/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java +++ b/library/src/main/java/com/mikepenz/materialdrawer/model/ExpandableDrawerItem.java @@ -64,7 +64,6 @@ public int getLayoutRes() { return R.layout.material_drawer_item_expandable; } - @Override public ExpandableDrawerItem withOnDrawerItemClickListener(Drawer.OnDrawerItemClickListener onDrawerItemClickListener) { mOnDrawerItemClickListener = onDrawerItemClickListener; diff --git a/library/src/main/java/com/mikepenz/materialdrawer/model/interfaces/IDrawerItem.java b/library/src/main/java/com/mikepenz/materialdrawer/model/interfaces/IDrawerItem.java index 650d105df..37722b168 100644 --- a/library/src/main/java/com/mikepenz/materialdrawer/model/interfaces/IDrawerItem.java +++ b/library/src/main/java/com/mikepenz/materialdrawer/model/interfaces/IDrawerItem.java @@ -5,14 +5,18 @@ import android.view.View; import android.view.ViewGroup; +import com.mikepenz.fastadapter.IDraggable; +import com.mikepenz.fastadapter.IExpandable; import com.mikepenz.fastadapter.IItem; +import com.mikepenz.fastadapter.ISubItem; +import com.mikepenz.materialdrawer.util.DrawerImageLoader; import java.util.List; /** * Created by mikepenz on 03.02.15. */ -public interface IDrawerItem extends IItem { +public interface IDrawerItem extends IItem, IExpandable, ISubItem { Object getTag(); @@ -36,6 +40,8 @@ public interface IDrawerItem extends IIte VH getViewHolder(ViewGroup parent); + void unbindView(VH holder); + void bindView(VH holder, List payloads); boolean equals(long id); From 50f91b32980feac69518410c97e2452ace772daf Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Tue, 4 Oct 2016 18:07:19 +0200 Subject: [PATCH 08/16] * update build tools * update support libs to 24.2.1 * update gradle build tools --- build.gradle | 6 +++--- gradle.properties | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 130628588..1e5fc1d39 100644 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,11 @@ buildscript { ext { setup = [compileSdk: 24, - buildTools: "24.0.1", + buildTools: "24.0.2", minSdk : 14, targetSdk : 24] - versions = [supportLib: "24.2.0"] + versions = [supportLib: "24.2.1"] } repositories { @@ -13,7 +13,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:2.1.3' + classpath 'com.android.tools.build:gradle:2.2.0' classpath 'com.novoda:bintray-release:0.3.4' } } diff --git a/gradle.properties b/gradle.properties index f9ebe1515..b8bcacd09 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # Maven stuff -VERSION_NAME=5.6.0 -VERSION_CODE=560 +VERSION_NAME=5.7.0-SNAPSHOT +VERSION_CODE=570 GROUP=com.mikepenz POM_DESCRIPTION=MaterialDrawer Library POM_URL=https://github.com/mikepenz/MaterialDrawer From bafa7dc0b118a610ae533bf166069cffc63162dc Mon Sep 17 00:00:00 2001 From: Moritz Post Date: Sun, 9 Oct 2016 22:20:32 +0200 Subject: [PATCH 09/16] Add javadoc to provide details about ProfileDrawerItem.withNameShown(..) --- .../mikepenz/materialdrawer/model/ProfileDrawerItem.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/library/src/main/java/com/mikepenz/materialdrawer/model/ProfileDrawerItem.java b/library/src/main/java/com/mikepenz/materialdrawer/model/ProfileDrawerItem.java index bfea5e46b..3065d6f85 100644 --- a/library/src/main/java/com/mikepenz/materialdrawer/model/ProfileDrawerItem.java +++ b/library/src/main/java/com/mikepenz/materialdrawer/model/ProfileDrawerItem.java @@ -95,6 +95,12 @@ public ProfileDrawerItem withEmail(String email) { return this; } + /** + * Whether to show the profile name in the account switcher. + * + * @param nameShown show name in switcher + * @return the {@link ProfileDrawerItem} + */ public ProfileDrawerItem withNameShown(boolean nameShown) { this.nameShown = nameShown; return this; From 2253f399f4a161f35b3608bfa3c8a49100541f76 Mon Sep 17 00:00:00 2001 From: wbervoets Date: Mon, 10 Oct 2016 20:00:03 +0200 Subject: [PATCH 10/16] link to Makota Money Manager added --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index fe84bcb0b..e95968b4e 100644 --- a/README.md +++ b/README.md @@ -421,6 +421,7 @@ builder.withDrawerLayout(R.layout.material_drawer); * [Fitness Challenge](https://play.google.com/store/apps/details?id=com.isidroid.fitchallenge) * [European Capital of Culture - Pafos2017 official app](https://play.google.com/store/apps/details?id=com.trackandtalk.pafos17) * [I'm Reading Quran - Kur'an Okuyorum](https://play.google.com/store/apps/details?id=com.homemade.kuranokuma) +* [Makota Money Manager](https://play.google.com/store/apps/details?id=be.jatra.makota) #Articles about the MaterialDrawer * [java-help.ru](http://java-help.ru/material-navigationdrawer/) From 1e1f2eda29b62eb8eee7d5b895af35f8c3e38a56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Leboulanger?= Date: Mon, 17 Oct 2016 10:02:15 +0200 Subject: [PATCH 11/16] Use `open()` method instead of `openDrawer()` Use `open()` method instead of `openDrawer()` because this method will be removed in the next release. --- FAQ/opening-drawer-from-espresso.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ/opening-drawer-from-espresso.md b/FAQ/opening-drawer-from-espresso.md index 5fb7459ba..4c2b06d82 100644 --- a/FAQ/opening-drawer-from-espresso.md +++ b/FAQ/opening-drawer-from-espresso.md @@ -7,4 +7,4 @@ First, you need a add `espresso-contrib` to your project. It has the needed `Dra Then, you need to open the drawer with his `openDrawer()` method and the drawer layout ID. The generated one is `R.id.material_drawer_layout` -`DrawerActions.openDrawer(R.id.material_drawer_layout);` +`DrawerActions.open(R.id.material_drawer_layout);` From fdff76b5dd5152248a5644f1fac3ac130dcdb1ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Leboulanger?= Date: Mon, 17 Oct 2016 10:18:23 +0200 Subject: [PATCH 12/16] Update opening-drawer-from-espresso.md --- FAQ/opening-drawer-from-espresso.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ/opening-drawer-from-espresso.md b/FAQ/opening-drawer-from-espresso.md index 4c2b06d82..56be2d54c 100644 --- a/FAQ/opening-drawer-from-espresso.md +++ b/FAQ/opening-drawer-from-espresso.md @@ -7,4 +7,4 @@ First, you need a add `espresso-contrib` to your project. It has the needed `Dra Then, you need to open the drawer with his `openDrawer()` method and the drawer layout ID. The generated one is `R.id.material_drawer_layout` -`DrawerActions.open(R.id.material_drawer_layout);` +`onView(withId(R.id.material_drawer_layout)).perform(DrawerActions.open(Gravity.START));` From fcbd92d5f971a20fdef4debdf6d6129a8de55237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Leboulanger?= Date: Mon, 17 Oct 2016 10:23:40 +0200 Subject: [PATCH 13/16] Update opening-drawer-from-espresso.md --- FAQ/opening-drawer-from-espresso.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ/opening-drawer-from-espresso.md b/FAQ/opening-drawer-from-espresso.md index 56be2d54c..b3e1d8e40 100644 --- a/FAQ/opening-drawer-from-espresso.md +++ b/FAQ/opening-drawer-from-espresso.md @@ -7,4 +7,4 @@ First, you need a add `espresso-contrib` to your project. It has the needed `Dra Then, you need to open the drawer with his `openDrawer()` method and the drawer layout ID. The generated one is `R.id.material_drawer_layout` -`onView(withId(R.id.material_drawer_layout)).perform(DrawerActions.open(Gravity.START));` +`onView(withId(R.id.material_drawer_layout)).perform(DrawerActions.open());` From f80de1fcd9c0c936e35b48414c73a848c1ebdbd0 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Mon, 17 Oct 2016 17:54:24 +0200 Subject: [PATCH 14/16] Update .travis.yml fix travis build --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5095d0f85..6a567617a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ android: - tools # The BuildTools version used by your project - - build-tools-24.0.1 + - build-tools-24.0.2 # The SDK version used to compile your project - android-24 From 9b8216b1d06b3941b70ce6eeb773195fe6e83e33 Mon Sep 17 00:00:00 2001 From: Adithya J Date: Mon, 24 Oct 2016 13:43:01 +0530 Subject: [PATCH 15/16] Add Companion for Band to apps using the MaterialDrawer --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e95968b4e..e3aa45d6a 100644 --- a/README.md +++ b/README.md @@ -422,6 +422,7 @@ builder.withDrawerLayout(R.layout.material_drawer); * [European Capital of Culture - Pafos2017 official app](https://play.google.com/store/apps/details?id=com.trackandtalk.pafos17) * [I'm Reading Quran - Kur'an Okuyorum](https://play.google.com/store/apps/details?id=com.homemade.kuranokuma) * [Makota Money Manager](https://play.google.com/store/apps/details?id=be.jatra.makota) +* [Companion for Band](https://github.com/adithya321/Companion-for-Band) #Articles about the MaterialDrawer * [java-help.ru](http://java-help.ru/material-navigationdrawer/) From 95920ffac61b8408502799e90186e9eac933d31e Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Wed, 26 Oct 2016 19:59:10 -0700 Subject: [PATCH 16/16] * [release] v5.7.0 --- .travis.yml | 4 ++-- MIGRATION.md | 6 ++++++ README.md | 2 +- app/build.gradle | 4 ++-- build.gradle | 10 +++++----- gradle.properties | 2 +- library/build.gradle | 6 +++--- .../main/res/values/library_materialdrawer_strings.xml | 2 +- 8 files changed, 21 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6a567617a..db0c4fd5a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,10 +8,10 @@ android: - tools # The BuildTools version used by your project - - build-tools-24.0.2 + - build-tools-25.0.0 # The SDK version used to compile your project - - android-24 + - android-25 # Additional components - extra-google-m2repository diff --git a/MIGRATION.md b/MIGRATION.md index 3469ffc5b..bfcaf6c51 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -1,5 +1,11 @@ ###Upgrade Notes +#### v5.7.0 +**IMPORTANT IF YOU IMPLEMENT CUSTOM-DRAWER-ITEMS OR USE THE FASTADAPTER** +* You have to update your `FastAdapter` dependency to v2.0.0 with this release +* If you have `CustomDrawerItem`'s not based on the `AbstractDrawerITems` make sure you implement the `unbindView` method, and the new required methods +* See the MIGRATION information of the **FastAdapter** https://github.com/mikepenz/FastAdapter/blob/develop/MIGRATION.md + #### v5.6.0 **IMPORTANT IF YOU IMPLEMENT CUSTOM-DRAWER-ITEMS OR USE THE FASTADAPTER** * This release brings a breaking interface change. Your items now have to implement `bindView(ViewHolder holder, List payloads)` instead of `bindView(VH holder)`. diff --git a/README.md b/README.md index e3aa45d6a..01563878c 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ You can find some frequently asked questions and other resources in the [WIKI / ##1. Provide the gradle dependency ```gradle -compile('com.mikepenz:materialdrawer:5.6.0@aar') { +compile('com.mikepenz:materialdrawer:5.7.0@aar') { transitive = true } ``` diff --git a/app/build.gradle b/app/build.gradle index 51af8b129..2bc9b11f7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -12,8 +12,8 @@ android { defaultConfig { minSdkVersion setup.minSdk targetSdkVersion setup.targetSdk - versionCode 560 - versionName "5.6.0" + versionCode 570 + versionName "5.7.0" setProperty("archivesBaseName", "-v$versionName-c$versionCode") } diff --git a/build.gradle b/build.gradle index 1e5fc1d39..3c3b69e8b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,11 @@ buildscript { ext { - setup = [compileSdk: 24, - buildTools: "24.0.2", + setup = [compileSdk: 25, + buildTools: "25.0.0", minSdk : 14, - targetSdk : 24] + targetSdk : 25] - versions = [supportLib: "24.2.1"] + versions = [supportLib: "25.0.0"] } repositories { @@ -13,7 +13,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:2.2.0' + classpath 'com.android.tools.build:gradle:2.2.2' classpath 'com.novoda:bintray-release:0.3.4' } } diff --git a/gradle.properties b/gradle.properties index b8bcacd09..34b3ebd26 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Maven stuff -VERSION_NAME=5.7.0-SNAPSHOT +VERSION_NAME=5.7.0 VERSION_CODE=570 GROUP=com.mikepenz POM_DESCRIPTION=MaterialDrawer Library diff --git a/library/build.gradle b/library/build.gradle index bd8b0fc31..9b4136043 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -8,8 +8,8 @@ android { defaultConfig { minSdkVersion setup.minSdk targetSdkVersion setup.targetSdk - versionCode 560 - versionName '5.6.0' + versionCode 570 + versionName '5.7.0' } buildTypes { release { @@ -47,5 +47,5 @@ dependencies { // 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:2.0.0.b2-SNAPSHOT@aar' + compile 'com.mikepenz:fastadapter:2.0.0@aar' } diff --git a/library/src/main/res/values/library_materialdrawer_strings.xml b/library/src/main/res/values/library_materialdrawer_strings.xml index 23f65891b..c555965e7 100755 --- a/library/src/main/res/values/library_materialdrawer_strings.xml +++ b/library/src/main/res/values/library_materialdrawer_strings.xml @@ -10,7 +10,7 @@ MaterialDrawer the flexible, easy to use, all in one drawer library for your Android project. ]]> - 5.6.0 + 5.7.0 https://github.com/mikepenz/MaterialDrawer apache_2_0 true