From 22fa19081f23c37ccf1e140e551c85a8efba805b Mon Sep 17 00:00:00 2001 From: Aidan Follestad Date: Fri, 19 Oct 2018 15:39:53 -0700 Subject: [PATCH] Version 1.0.0-beta02 --- README.md | 6 +++++- dependencies.gradle | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1d6facc..0976405 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Add this to your app module's `build.gradle` file: ```gradle dependencies { - implementation 'com.afollestad:aesthetic:1.0.0-beta01' + implementation 'com.afollestad:aesthetic:1.0.0-beta02' } ``` @@ -371,6 +371,8 @@ Aesthetic.config { bottomNavigationBackgroundMode(BottomNavBgMode.PRIMARY_DARK) // The tabs' background will be the accent color. bottomNavigationBackgroundMode(BottomNavBgMode.ACCENT) + // This library will not do any automatic background color theming of bottom nav views. + bottomNavigationBackgroundMode(BottomNavBgMode.NONE) // The selected tab's icon will be tinted with the primary color. bottomNavigationIconTextMode(BottomNavIconTextMode.SELECTED_PRIMARY) @@ -379,6 +381,8 @@ Aesthetic.config { // The selected tab's icon will be tinted black or white based on // the darkness of the overall theme. bottomNavigationIconTextMode(BottomNavIconTextMode.BLACK_WHITE_AUTO) + // This library will not do any automatic icon/text theming of bottom nav views. + bottomNavigationIconTextMode(BottomNavBgMode.NONE) } ``` diff --git a/dependencies.gradle b/dependencies.gradle index 564eb36..52bcd22 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -2,8 +2,8 @@ ext.versions = [ minSdk : 16, compileSdk : 28, buildTools : '28.0.3', - publishVersion : '1.0.0-beta01', - publishVersionCode: 29, + publishVersion : '1.0.0-beta02', + publishVersionCode: 30, gradlePlugin : '3.1.4', kotlin : '1.2.71',