-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated proguard rules. This required swapping out the roughike botto…
…mbar library for the design support bottom nav view. The bottombar lib caused a missing reference issue when minifying.
- Loading branch information
1 parent
f2b95d9
commit 708a7bd
Showing
6 changed files
with
70 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<menu | ||
xmlns:android="https://schemas.android.com/apk/res/android" | ||
xmlns:app="https://schemas.android.com/apk/res-auto"> | ||
|
||
<item | ||
android:id="@+id/tab_home" | ||
android:enabled="true" | ||
android:icon="@drawable/ic_home_24dp" | ||
android:title="@string/title_tab_home" | ||
app:showAsAction="ifRoom"/> | ||
|
||
<item | ||
android:id="@+id/tab_fav_routes" | ||
android:enabled="true" | ||
android:icon="@drawable/ic_favorite_filled_24dp" | ||
android:title="@string/title_tab_fav_routes" | ||
app:showAsAction="ifRoom"/> | ||
|
||
<item | ||
android:id="@+id/tab_buses" | ||
android:enabled="true" | ||
android:icon="@drawable/ic_bus_24dp" | ||
android:title="@string/title_tab_buses" | ||
app:showAsAction="ifRoom"/> | ||
|
||
<item | ||
android:id="@+id/tab_trains" | ||
android:enabled="true" | ||
android:icon="@drawable/ic_train_24dp" | ||
android:title="@string/title_tab_trains" | ||
app:showAsAction="ifRoom"/> | ||
|
||
<item | ||
android:id="@+id/tab_notifications" | ||
android:enabled="true" | ||
android:icon="@drawable/ic_notifications_24dp" | ||
android:title="@string/title_tab_notifications" | ||
app:showAsAction="ifRoom"/> | ||
</menu> |