diff --git a/Opus/Opus.csproj b/Opus/Opus.csproj
index ecbbaab..2b47bdf 100644
--- a/Opus/Opus.csproj
+++ b/Opus/Opus.csproj
@@ -888,6 +888,15 @@
+
+
+
+
+
+ MSBuild:UpdateGeneratedFiles
+ Designer
+
+
diff --git a/Opus/Resources/Portable Class/Player.cs b/Opus/Resources/Portable Class/Player.cs
index 17ac6bf..69feac4 100644
--- a/Opus/Resources/Portable Class/Player.cs
+++ b/Opus/Resources/Portable Class/Player.cs
@@ -57,6 +57,8 @@ namespace Opus
view.FindViewById(Resource.Id.playButton).Click += Play_Click;
view.FindViewById(Resource.Id.nextButton).Click += Next_Click;
view.FindViewById(Resource.Id.moreButton).Click += More;
+ view.FindViewById(Resource.Id.repeat).Click += Repeat;
+ view.FindViewById(Resource.Id.fav).Click += Fav;
}
albumArt = view.FindViewById(Resource.Id.playerAlbum);
@@ -364,6 +366,32 @@ namespace Opus
MainActivity.instance.StartService(intent);
}
+ private void Repeat(object sender, EventArgs e)
+ {
+ MusicPlayer.repeat = !MusicPlayer.repeat;
+
+ if (MusicPlayer.UseCastPlayer)
+ MusicPlayer.RemotePlayer.QueueSetRepeatMode(MusicPlayer.repeat ? 1 : 0, null);
+
+ if (MusicPlayer.repeat)
+ {
+ MainActivity.instance.FindViewById(Resource.Id.repeat).SetColorFilter(Color.Argb(255, 21, 183, 237), PorterDuff.Mode.Multiply);
+ MusicPlayer.useAutoPlay = false;
+ Queue.instance.NotifyItemChanged(MusicPlayer.queue.Count, "UseAutoplay");
+ }
+ else
+ {
+ MainActivity.instance.FindViewById(Resource.Id.repeat).ClearColorFilter();
+ MusicPlayer.useAutoPlay = true;
+ Queue.instance.NotifyItemChanged(MusicPlayer.queue.Count, "UseAutoplay");
+ }
+ }
+
+ private void Fav(object sender, EventArgs e)
+ {
+
+ }
+
private async void More(object s, EventArgs e)
{
Song item = await MusicPlayer.GetItem();
diff --git a/Opus/Resources/Portable Class/QueueAdapter.cs b/Opus/Resources/Portable Class/QueueAdapter.cs
index 68bb5f2..15312c4 100644
--- a/Opus/Resources/Portable Class/QueueAdapter.cs
+++ b/Opus/Resources/Portable Class/QueueAdapter.cs
@@ -149,14 +149,9 @@ namespace Opus.Resources.Portable_Class
if (MusicPlayer.useAutoPlay)
{
MusicPlayer.repeat = false;
- //Queue.instance.menu.FindItem(Resource.Id.repeat).Icon.ClearColorFilter();
+ NotifyItemChanged(0);
}
};
-
- //holder.MixButton.Click += async (sender, e) =>
- //{
- // YoutubeEngine.CreateMix(await MusicPlayer.GetItem());
- //};
}
}
else
diff --git a/Opus/Resources/Resource.Designer.cs b/Opus/Resources/Resource.Designer.cs
index a543395..d390235 100644
--- a/Opus/Resources/Resource.Designer.cs
+++ b/Opus/Resources/Resource.Designer.cs
@@ -3682,26 +3682,26 @@ namespace Opus
// aapt resource value: 0x7f020057
public const int avd_hide_password = 2130837591;
- // aapt resource value: 0x7f0201fa
- public const int avd_hide_password_1 = 2130838010;
-
- // aapt resource value: 0x7f0201fb
- public const int avd_hide_password_2 = 2130838011;
-
// aapt resource value: 0x7f0201fc
- public const int avd_hide_password_3 = 2130838012;
+ public const int avd_hide_password_1 = 2130838012;
+
+ // aapt resource value: 0x7f0201fd
+ public const int avd_hide_password_2 = 2130838013;
+
+ // aapt resource value: 0x7f0201fe
+ public const int avd_hide_password_3 = 2130838014;
// aapt resource value: 0x7f020058
public const int avd_show_password = 2130837592;
- // aapt resource value: 0x7f0201fd
- public const int avd_show_password_1 = 2130838013;
-
- // aapt resource value: 0x7f0201fe
- public const int avd_show_password_2 = 2130838014;
-
// aapt resource value: 0x7f0201ff
- public const int avd_show_password_3 = 2130838015;
+ public const int avd_show_password_1 = 2130838015;
+
+ // aapt resource value: 0x7f020200
+ public const int avd_show_password_2 = 2130838016;
+
+ // aapt resource value: 0x7f020201
+ public const int avd_show_password_3 = 2130838017;
// aapt resource value: 0x7f020059
public const int Cancel = 2130837593;
@@ -3967,8 +3967,8 @@ namespace Opus
// aapt resource value: 0x7f0200b0
public const int Error = 2130837680;
- // aapt resource value: 0x7f0201ed
- public const int exo_controls_fastforward = 2130837997;
+ // aapt resource value: 0x7f0201ef
+ public const int exo_controls_fastforward = 2130837999;
// aapt resource value: 0x7f0200b1
public const int exo_controls_fullscreen_enter = 2130837681;
@@ -3976,17 +3976,17 @@ namespace Opus
// aapt resource value: 0x7f0200b2
public const int exo_controls_fullscreen_exit = 2130837682;
- // aapt resource value: 0x7f0201ee
- public const int exo_controls_next = 2130837998;
-
- // aapt resource value: 0x7f0201ef
- public const int exo_controls_pause = 2130837999;
-
// aapt resource value: 0x7f0201f0
- public const int exo_controls_play = 2130838000;
+ public const int exo_controls_next = 2130838000;
// aapt resource value: 0x7f0201f1
- public const int exo_controls_previous = 2130838001;
+ public const int exo_controls_pause = 2130838001;
+
+ // aapt resource value: 0x7f0201f2
+ public const int exo_controls_play = 2130838002;
+
+ // aapt resource value: 0x7f0201f3
+ public const int exo_controls_previous = 2130838003;
// aapt resource value: 0x7f0200b3
public const int exo_controls_repeat_all = 2130837683;
@@ -3997,8 +3997,8 @@ namespace Opus
// aapt resource value: 0x7f0200b5
public const int exo_controls_repeat_one = 2130837685;
- // aapt resource value: 0x7f0201f2
- public const int exo_controls_rewind = 2130838002;
+ // aapt resource value: 0x7f0201f4
+ public const int exo_controls_rewind = 2130838004;
// aapt resource value: 0x7f0200b6
public const int exo_controls_shuffle = 2130837686;
@@ -4027,932 +4027,938 @@ namespace Opus
// aapt resource value: 0x7f0200be
public const int exo_icon_stop = 2130837694;
- // aapt resource value: 0x7f0201f3
- public const int exo_notification_fastforward = 2130838003;
-
- // aapt resource value: 0x7f0201f4
- public const int exo_notification_next = 2130838004;
-
// aapt resource value: 0x7f0201f5
- public const int exo_notification_pause = 2130838005;
+ public const int exo_notification_fastforward = 2130838005;
// aapt resource value: 0x7f0201f6
- public const int exo_notification_play = 2130838006;
+ public const int exo_notification_next = 2130838006;
// aapt resource value: 0x7f0201f7
- public const int exo_notification_previous = 2130838007;
+ public const int exo_notification_pause = 2130838007;
// aapt resource value: 0x7f0201f8
- public const int exo_notification_rewind = 2130838008;
+ public const int exo_notification_play = 2130838008;
+
+ // aapt resource value: 0x7f0201f9
+ public const int exo_notification_previous = 2130838009;
+
+ // aapt resource value: 0x7f0201fa
+ public const int exo_notification_rewind = 2130838010;
// aapt resource value: 0x7f0200bf
public const int exo_notification_small_icon = 2130837695;
- // aapt resource value: 0x7f0201f9
- public const int exo_notification_stop = 2130838009;
+ // aapt resource value: 0x7f0201fb
+ public const int exo_notification_stop = 2130838011;
// aapt resource value: 0x7f0200c0
public const int ExpandLess = 2130837696;
// aapt resource value: 0x7f0200c1
- public const int Filter = 2130837697;
+ public const int Fav = 2130837697;
// aapt resource value: 0x7f0200c2
- public const int FlatButtonBorder = 2130837698;
+ public const int Filter = 2130837698;
// aapt resource value: 0x7f0200c3
- public const int Folder = 2130837699;
+ public const int FlatButtonBorder = 2130837699;
// aapt resource value: 0x7f0200c4
- public const int googleg_disabled_color_18 = 2130837700;
+ public const int Folder = 2130837700;
// aapt resource value: 0x7f0200c5
- public const int googleg_standard_color_18 = 2130837701;
+ public const int googleg_disabled_color_18 = 2130837701;
// aapt resource value: 0x7f0200c6
- public const int GradientShape = 2130837702;
+ public const int googleg_standard_color_18 = 2130837702;
// aapt resource value: 0x7f0200c7
- public const int History = 2130837703;
+ public const int GradientShape = 2130837703;
// aapt resource value: 0x7f0200c8
- public const int Home = 2130837704;
+ public const int History = 2130837704;
// aapt resource value: 0x7f0200c9
- public const int ic_arrow_down_24dp = 2130837705;
+ public const int Home = 2130837705;
// aapt resource value: 0x7f0200ca
- public const int ic_audiotrack_dark = 2130837706;
+ public const int ic_arrow_down_24dp = 2130837706;
// aapt resource value: 0x7f0200cb
- public const int ic_audiotrack_light = 2130837707;
+ public const int ic_audiotrack_dark = 2130837707;
// aapt resource value: 0x7f0200cc
- public const int ic_dialog_close_dark = 2130837708;
+ public const int ic_audiotrack_light = 2130837708;
// aapt resource value: 0x7f0200cd
- public const int ic_dialog_close_light = 2130837709;
+ public const int ic_dialog_close_dark = 2130837709;
// aapt resource value: 0x7f0200ce
- public const int ic_done_black_24dp = 2130837710;
+ public const int ic_dialog_close_light = 2130837710;
// aapt resource value: 0x7f0200cf
- public const int ic_group_collapse_00 = 2130837711;
+ public const int ic_done_black_24dp = 2130837711;
// aapt resource value: 0x7f0200d0
- public const int ic_group_collapse_01 = 2130837712;
+ public const int ic_group_collapse_00 = 2130837712;
// aapt resource value: 0x7f0200d1
- public const int ic_group_collapse_02 = 2130837713;
+ public const int ic_group_collapse_01 = 2130837713;
// aapt resource value: 0x7f0200d2
- public const int ic_group_collapse_03 = 2130837714;
+ public const int ic_group_collapse_02 = 2130837714;
// aapt resource value: 0x7f0200d3
- public const int ic_group_collapse_04 = 2130837715;
+ public const int ic_group_collapse_03 = 2130837715;
// aapt resource value: 0x7f0200d4
- public const int ic_group_collapse_05 = 2130837716;
+ public const int ic_group_collapse_04 = 2130837716;
// aapt resource value: 0x7f0200d5
- public const int ic_group_collapse_06 = 2130837717;
+ public const int ic_group_collapse_05 = 2130837717;
// aapt resource value: 0x7f0200d6
- public const int ic_group_collapse_07 = 2130837718;
+ public const int ic_group_collapse_06 = 2130837718;
// aapt resource value: 0x7f0200d7
- public const int ic_group_collapse_08 = 2130837719;
+ public const int ic_group_collapse_07 = 2130837719;
// aapt resource value: 0x7f0200d8
- public const int ic_group_collapse_09 = 2130837720;
+ public const int ic_group_collapse_08 = 2130837720;
// aapt resource value: 0x7f0200d9
- public const int ic_group_collapse_10 = 2130837721;
+ public const int ic_group_collapse_09 = 2130837721;
// aapt resource value: 0x7f0200da
- public const int ic_group_collapse_11 = 2130837722;
+ public const int ic_group_collapse_10 = 2130837722;
// aapt resource value: 0x7f0200db
- public const int ic_group_collapse_12 = 2130837723;
+ public const int ic_group_collapse_11 = 2130837723;
// aapt resource value: 0x7f0200dc
- public const int ic_group_collapse_13 = 2130837724;
+ public const int ic_group_collapse_12 = 2130837724;
// aapt resource value: 0x7f0200dd
- public const int ic_group_collapse_14 = 2130837725;
+ public const int ic_group_collapse_13 = 2130837725;
// aapt resource value: 0x7f0200de
- public const int ic_group_collapse_15 = 2130837726;
+ public const int ic_group_collapse_14 = 2130837726;
// aapt resource value: 0x7f0200df
- public const int ic_group_expand_00 = 2130837727;
+ public const int ic_group_collapse_15 = 2130837727;
// aapt resource value: 0x7f0200e0
- public const int ic_group_expand_01 = 2130837728;
+ public const int ic_group_expand_00 = 2130837728;
// aapt resource value: 0x7f0200e1
- public const int ic_group_expand_02 = 2130837729;
+ public const int ic_group_expand_01 = 2130837729;
// aapt resource value: 0x7f0200e2
- public const int ic_group_expand_03 = 2130837730;
+ public const int ic_group_expand_02 = 2130837730;
// aapt resource value: 0x7f0200e3
- public const int ic_group_expand_04 = 2130837731;
+ public const int ic_group_expand_03 = 2130837731;
// aapt resource value: 0x7f0200e4
- public const int ic_group_expand_05 = 2130837732;
+ public const int ic_group_expand_04 = 2130837732;
// aapt resource value: 0x7f0200e5
- public const int ic_group_expand_06 = 2130837733;
+ public const int ic_group_expand_05 = 2130837733;
// aapt resource value: 0x7f0200e6
- public const int ic_group_expand_07 = 2130837734;
+ public const int ic_group_expand_06 = 2130837734;
// aapt resource value: 0x7f0200e7
- public const int ic_group_expand_08 = 2130837735;
+ public const int ic_group_expand_07 = 2130837735;
// aapt resource value: 0x7f0200e8
- public const int ic_group_expand_09 = 2130837736;
+ public const int ic_group_expand_08 = 2130837736;
// aapt resource value: 0x7f0200e9
- public const int ic_group_expand_10 = 2130837737;
+ public const int ic_group_expand_09 = 2130837737;
// aapt resource value: 0x7f0200ea
- public const int ic_group_expand_11 = 2130837738;
+ public const int ic_group_expand_10 = 2130837738;
// aapt resource value: 0x7f0200eb
- public const int ic_group_expand_12 = 2130837739;
+ public const int ic_group_expand_11 = 2130837739;
// aapt resource value: 0x7f0200ec
- public const int ic_group_expand_13 = 2130837740;
+ public const int ic_group_expand_12 = 2130837740;
// aapt resource value: 0x7f0200ed
- public const int ic_group_expand_14 = 2130837741;
+ public const int ic_group_expand_13 = 2130837741;
// aapt resource value: 0x7f0200ee
- public const int ic_group_expand_15 = 2130837742;
+ public const int ic_group_expand_14 = 2130837742;
// aapt resource value: 0x7f0200ef
- public const int ic_media_pause_dark = 2130837743;
+ public const int ic_group_expand_15 = 2130837743;
// aapt resource value: 0x7f0200f0
- public const int ic_media_pause_light = 2130837744;
+ public const int ic_media_pause_dark = 2130837744;
// aapt resource value: 0x7f0200f1
- public const int ic_media_play_dark = 2130837745;
+ public const int ic_media_pause_light = 2130837745;
// aapt resource value: 0x7f0200f2
- public const int ic_media_play_light = 2130837746;
+ public const int ic_media_play_dark = 2130837746;
// aapt resource value: 0x7f0200f3
- public const int ic_media_stop_dark = 2130837747;
+ public const int ic_media_play_light = 2130837747;
// aapt resource value: 0x7f0200f4
- public const int ic_media_stop_light = 2130837748;
+ public const int ic_media_stop_dark = 2130837748;
// aapt resource value: 0x7f0200f5
- public const int ic_mr_button_connected_00_dark = 2130837749;
+ public const int ic_media_stop_light = 2130837749;
// aapt resource value: 0x7f0200f6
- public const int ic_mr_button_connected_00_light = 2130837750;
+ public const int ic_mr_button_connected_00_dark = 2130837750;
// aapt resource value: 0x7f0200f7
- public const int ic_mr_button_connected_01_dark = 2130837751;
+ public const int ic_mr_button_connected_00_light = 2130837751;
// aapt resource value: 0x7f0200f8
- public const int ic_mr_button_connected_01_light = 2130837752;
+ public const int ic_mr_button_connected_01_dark = 2130837752;
// aapt resource value: 0x7f0200f9
- public const int ic_mr_button_connected_02_dark = 2130837753;
+ public const int ic_mr_button_connected_01_light = 2130837753;
// aapt resource value: 0x7f0200fa
- public const int ic_mr_button_connected_02_light = 2130837754;
+ public const int ic_mr_button_connected_02_dark = 2130837754;
// aapt resource value: 0x7f0200fb
- public const int ic_mr_button_connected_03_dark = 2130837755;
+ public const int ic_mr_button_connected_02_light = 2130837755;
// aapt resource value: 0x7f0200fc
- public const int ic_mr_button_connected_03_light = 2130837756;
+ public const int ic_mr_button_connected_03_dark = 2130837756;
// aapt resource value: 0x7f0200fd
- public const int ic_mr_button_connected_04_dark = 2130837757;
+ public const int ic_mr_button_connected_03_light = 2130837757;
// aapt resource value: 0x7f0200fe
- public const int ic_mr_button_connected_04_light = 2130837758;
+ public const int ic_mr_button_connected_04_dark = 2130837758;
// aapt resource value: 0x7f0200ff
- public const int ic_mr_button_connected_05_dark = 2130837759;
+ public const int ic_mr_button_connected_04_light = 2130837759;
// aapt resource value: 0x7f020100
- public const int ic_mr_button_connected_05_light = 2130837760;
+ public const int ic_mr_button_connected_05_dark = 2130837760;
// aapt resource value: 0x7f020101
- public const int ic_mr_button_connected_06_dark = 2130837761;
+ public const int ic_mr_button_connected_05_light = 2130837761;
// aapt resource value: 0x7f020102
- public const int ic_mr_button_connected_06_light = 2130837762;
+ public const int ic_mr_button_connected_06_dark = 2130837762;
// aapt resource value: 0x7f020103
- public const int ic_mr_button_connected_07_dark = 2130837763;
+ public const int ic_mr_button_connected_06_light = 2130837763;
// aapt resource value: 0x7f020104
- public const int ic_mr_button_connected_07_light = 2130837764;
+ public const int ic_mr_button_connected_07_dark = 2130837764;
// aapt resource value: 0x7f020105
- public const int ic_mr_button_connected_08_dark = 2130837765;
+ public const int ic_mr_button_connected_07_light = 2130837765;
// aapt resource value: 0x7f020106
- public const int ic_mr_button_connected_08_light = 2130837766;
+ public const int ic_mr_button_connected_08_dark = 2130837766;
// aapt resource value: 0x7f020107
- public const int ic_mr_button_connected_09_dark = 2130837767;
+ public const int ic_mr_button_connected_08_light = 2130837767;
// aapt resource value: 0x7f020108
- public const int ic_mr_button_connected_09_light = 2130837768;
+ public const int ic_mr_button_connected_09_dark = 2130837768;
// aapt resource value: 0x7f020109
- public const int ic_mr_button_connected_10_dark = 2130837769;
+ public const int ic_mr_button_connected_09_light = 2130837769;
// aapt resource value: 0x7f02010a
- public const int ic_mr_button_connected_10_light = 2130837770;
+ public const int ic_mr_button_connected_10_dark = 2130837770;
// aapt resource value: 0x7f02010b
- public const int ic_mr_button_connected_11_dark = 2130837771;
+ public const int ic_mr_button_connected_10_light = 2130837771;
// aapt resource value: 0x7f02010c
- public const int ic_mr_button_connected_11_light = 2130837772;
+ public const int ic_mr_button_connected_11_dark = 2130837772;
// aapt resource value: 0x7f02010d
- public const int ic_mr_button_connected_12_dark = 2130837773;
+ public const int ic_mr_button_connected_11_light = 2130837773;
// aapt resource value: 0x7f02010e
- public const int ic_mr_button_connected_12_light = 2130837774;
+ public const int ic_mr_button_connected_12_dark = 2130837774;
// aapt resource value: 0x7f02010f
- public const int ic_mr_button_connected_13_dark = 2130837775;
+ public const int ic_mr_button_connected_12_light = 2130837775;
// aapt resource value: 0x7f020110
- public const int ic_mr_button_connected_13_light = 2130837776;
+ public const int ic_mr_button_connected_13_dark = 2130837776;
// aapt resource value: 0x7f020111
- public const int ic_mr_button_connected_14_dark = 2130837777;
+ public const int ic_mr_button_connected_13_light = 2130837777;
// aapt resource value: 0x7f020112
- public const int ic_mr_button_connected_14_light = 2130837778;
+ public const int ic_mr_button_connected_14_dark = 2130837778;
// aapt resource value: 0x7f020113
- public const int ic_mr_button_connected_15_dark = 2130837779;
+ public const int ic_mr_button_connected_14_light = 2130837779;
// aapt resource value: 0x7f020114
- public const int ic_mr_button_connected_15_light = 2130837780;
+ public const int ic_mr_button_connected_15_dark = 2130837780;
// aapt resource value: 0x7f020115
- public const int ic_mr_button_connected_16_dark = 2130837781;
+ public const int ic_mr_button_connected_15_light = 2130837781;
// aapt resource value: 0x7f020116
- public const int ic_mr_button_connected_16_light = 2130837782;
+ public const int ic_mr_button_connected_16_dark = 2130837782;
// aapt resource value: 0x7f020117
- public const int ic_mr_button_connected_17_dark = 2130837783;
+ public const int ic_mr_button_connected_16_light = 2130837783;
// aapt resource value: 0x7f020118
- public const int ic_mr_button_connected_17_light = 2130837784;
+ public const int ic_mr_button_connected_17_dark = 2130837784;
// aapt resource value: 0x7f020119
- public const int ic_mr_button_connected_18_dark = 2130837785;
+ public const int ic_mr_button_connected_17_light = 2130837785;
// aapt resource value: 0x7f02011a
- public const int ic_mr_button_connected_18_light = 2130837786;
+ public const int ic_mr_button_connected_18_dark = 2130837786;
// aapt resource value: 0x7f02011b
- public const int ic_mr_button_connected_19_dark = 2130837787;
+ public const int ic_mr_button_connected_18_light = 2130837787;
// aapt resource value: 0x7f02011c
- public const int ic_mr_button_connected_19_light = 2130837788;
+ public const int ic_mr_button_connected_19_dark = 2130837788;
// aapt resource value: 0x7f02011d
- public const int ic_mr_button_connected_20_dark = 2130837789;
+ public const int ic_mr_button_connected_19_light = 2130837789;
// aapt resource value: 0x7f02011e
- public const int ic_mr_button_connected_20_light = 2130837790;
+ public const int ic_mr_button_connected_20_dark = 2130837790;
// aapt resource value: 0x7f02011f
- public const int ic_mr_button_connected_21_dark = 2130837791;
+ public const int ic_mr_button_connected_20_light = 2130837791;
// aapt resource value: 0x7f020120
- public const int ic_mr_button_connected_21_light = 2130837792;
+ public const int ic_mr_button_connected_21_dark = 2130837792;
// aapt resource value: 0x7f020121
- public const int ic_mr_button_connected_22_dark = 2130837793;
+ public const int ic_mr_button_connected_21_light = 2130837793;
// aapt resource value: 0x7f020122
- public const int ic_mr_button_connected_22_light = 2130837794;
+ public const int ic_mr_button_connected_22_dark = 2130837794;
// aapt resource value: 0x7f020123
- public const int ic_mr_button_connected_23_dark = 2130837795;
+ public const int ic_mr_button_connected_22_light = 2130837795;
// aapt resource value: 0x7f020124
- public const int ic_mr_button_connected_23_light = 2130837796;
+ public const int ic_mr_button_connected_23_dark = 2130837796;
// aapt resource value: 0x7f020125
- public const int ic_mr_button_connected_24_dark = 2130837797;
+ public const int ic_mr_button_connected_23_light = 2130837797;
// aapt resource value: 0x7f020126
- public const int ic_mr_button_connected_24_light = 2130837798;
+ public const int ic_mr_button_connected_24_dark = 2130837798;
// aapt resource value: 0x7f020127
- public const int ic_mr_button_connected_25_dark = 2130837799;
+ public const int ic_mr_button_connected_24_light = 2130837799;
// aapt resource value: 0x7f020128
- public const int ic_mr_button_connected_25_light = 2130837800;
+ public const int ic_mr_button_connected_25_dark = 2130837800;
// aapt resource value: 0x7f020129
- public const int ic_mr_button_connected_26_dark = 2130837801;
+ public const int ic_mr_button_connected_25_light = 2130837801;
// aapt resource value: 0x7f02012a
- public const int ic_mr_button_connected_26_light = 2130837802;
+ public const int ic_mr_button_connected_26_dark = 2130837802;
// aapt resource value: 0x7f02012b
- public const int ic_mr_button_connected_27_dark = 2130837803;
+ public const int ic_mr_button_connected_26_light = 2130837803;
// aapt resource value: 0x7f02012c
- public const int ic_mr_button_connected_27_light = 2130837804;
+ public const int ic_mr_button_connected_27_dark = 2130837804;
// aapt resource value: 0x7f02012d
- public const int ic_mr_button_connected_28_dark = 2130837805;
+ public const int ic_mr_button_connected_27_light = 2130837805;
// aapt resource value: 0x7f02012e
- public const int ic_mr_button_connected_28_light = 2130837806;
+ public const int ic_mr_button_connected_28_dark = 2130837806;
// aapt resource value: 0x7f02012f
- public const int ic_mr_button_connected_29_dark = 2130837807;
+ public const int ic_mr_button_connected_28_light = 2130837807;
// aapt resource value: 0x7f020130
- public const int ic_mr_button_connected_29_light = 2130837808;
+ public const int ic_mr_button_connected_29_dark = 2130837808;
// aapt resource value: 0x7f020131
- public const int ic_mr_button_connected_30_dark = 2130837809;
+ public const int ic_mr_button_connected_29_light = 2130837809;
// aapt resource value: 0x7f020132
- public const int ic_mr_button_connected_30_light = 2130837810;
+ public const int ic_mr_button_connected_30_dark = 2130837810;
// aapt resource value: 0x7f020133
- public const int ic_mr_button_connecting_00_dark = 2130837811;
+ public const int ic_mr_button_connected_30_light = 2130837811;
// aapt resource value: 0x7f020134
- public const int ic_mr_button_connecting_00_light = 2130837812;
+ public const int ic_mr_button_connecting_00_dark = 2130837812;
// aapt resource value: 0x7f020135
- public const int ic_mr_button_connecting_01_dark = 2130837813;
+ public const int ic_mr_button_connecting_00_light = 2130837813;
// aapt resource value: 0x7f020136
- public const int ic_mr_button_connecting_01_light = 2130837814;
+ public const int ic_mr_button_connecting_01_dark = 2130837814;
// aapt resource value: 0x7f020137
- public const int ic_mr_button_connecting_02_dark = 2130837815;
+ public const int ic_mr_button_connecting_01_light = 2130837815;
// aapt resource value: 0x7f020138
- public const int ic_mr_button_connecting_02_light = 2130837816;
+ public const int ic_mr_button_connecting_02_dark = 2130837816;
// aapt resource value: 0x7f020139
- public const int ic_mr_button_connecting_03_dark = 2130837817;
+ public const int ic_mr_button_connecting_02_light = 2130837817;
// aapt resource value: 0x7f02013a
- public const int ic_mr_button_connecting_03_light = 2130837818;
+ public const int ic_mr_button_connecting_03_dark = 2130837818;
// aapt resource value: 0x7f02013b
- public const int ic_mr_button_connecting_04_dark = 2130837819;
+ public const int ic_mr_button_connecting_03_light = 2130837819;
// aapt resource value: 0x7f02013c
- public const int ic_mr_button_connecting_04_light = 2130837820;
+ public const int ic_mr_button_connecting_04_dark = 2130837820;
// aapt resource value: 0x7f02013d
- public const int ic_mr_button_connecting_05_dark = 2130837821;
+ public const int ic_mr_button_connecting_04_light = 2130837821;
// aapt resource value: 0x7f02013e
- public const int ic_mr_button_connecting_05_light = 2130837822;
+ public const int ic_mr_button_connecting_05_dark = 2130837822;
// aapt resource value: 0x7f02013f
- public const int ic_mr_button_connecting_06_dark = 2130837823;
+ public const int ic_mr_button_connecting_05_light = 2130837823;
// aapt resource value: 0x7f020140
- public const int ic_mr_button_connecting_06_light = 2130837824;
+ public const int ic_mr_button_connecting_06_dark = 2130837824;
// aapt resource value: 0x7f020141
- public const int ic_mr_button_connecting_07_dark = 2130837825;
+ public const int ic_mr_button_connecting_06_light = 2130837825;
// aapt resource value: 0x7f020142
- public const int ic_mr_button_connecting_07_light = 2130837826;
+ public const int ic_mr_button_connecting_07_dark = 2130837826;
// aapt resource value: 0x7f020143
- public const int ic_mr_button_connecting_08_dark = 2130837827;
+ public const int ic_mr_button_connecting_07_light = 2130837827;
// aapt resource value: 0x7f020144
- public const int ic_mr_button_connecting_08_light = 2130837828;
+ public const int ic_mr_button_connecting_08_dark = 2130837828;
// aapt resource value: 0x7f020145
- public const int ic_mr_button_connecting_09_dark = 2130837829;
+ public const int ic_mr_button_connecting_08_light = 2130837829;
// aapt resource value: 0x7f020146
- public const int ic_mr_button_connecting_09_light = 2130837830;
+ public const int ic_mr_button_connecting_09_dark = 2130837830;
// aapt resource value: 0x7f020147
- public const int ic_mr_button_connecting_10_dark = 2130837831;
+ public const int ic_mr_button_connecting_09_light = 2130837831;
// aapt resource value: 0x7f020148
- public const int ic_mr_button_connecting_10_light = 2130837832;
+ public const int ic_mr_button_connecting_10_dark = 2130837832;
// aapt resource value: 0x7f020149
- public const int ic_mr_button_connecting_11_dark = 2130837833;
+ public const int ic_mr_button_connecting_10_light = 2130837833;
// aapt resource value: 0x7f02014a
- public const int ic_mr_button_connecting_11_light = 2130837834;
+ public const int ic_mr_button_connecting_11_dark = 2130837834;
// aapt resource value: 0x7f02014b
- public const int ic_mr_button_connecting_12_dark = 2130837835;
+ public const int ic_mr_button_connecting_11_light = 2130837835;
// aapt resource value: 0x7f02014c
- public const int ic_mr_button_connecting_12_light = 2130837836;
+ public const int ic_mr_button_connecting_12_dark = 2130837836;
// aapt resource value: 0x7f02014d
- public const int ic_mr_button_connecting_13_dark = 2130837837;
+ public const int ic_mr_button_connecting_12_light = 2130837837;
// aapt resource value: 0x7f02014e
- public const int ic_mr_button_connecting_13_light = 2130837838;
+ public const int ic_mr_button_connecting_13_dark = 2130837838;
// aapt resource value: 0x7f02014f
- public const int ic_mr_button_connecting_14_dark = 2130837839;
+ public const int ic_mr_button_connecting_13_light = 2130837839;
// aapt resource value: 0x7f020150
- public const int ic_mr_button_connecting_14_light = 2130837840;
+ public const int ic_mr_button_connecting_14_dark = 2130837840;
// aapt resource value: 0x7f020151
- public const int ic_mr_button_connecting_15_dark = 2130837841;
+ public const int ic_mr_button_connecting_14_light = 2130837841;
// aapt resource value: 0x7f020152
- public const int ic_mr_button_connecting_15_light = 2130837842;
+ public const int ic_mr_button_connecting_15_dark = 2130837842;
// aapt resource value: 0x7f020153
- public const int ic_mr_button_connecting_16_dark = 2130837843;
+ public const int ic_mr_button_connecting_15_light = 2130837843;
// aapt resource value: 0x7f020154
- public const int ic_mr_button_connecting_16_light = 2130837844;
+ public const int ic_mr_button_connecting_16_dark = 2130837844;
// aapt resource value: 0x7f020155
- public const int ic_mr_button_connecting_17_dark = 2130837845;
+ public const int ic_mr_button_connecting_16_light = 2130837845;
// aapt resource value: 0x7f020156
- public const int ic_mr_button_connecting_17_light = 2130837846;
+ public const int ic_mr_button_connecting_17_dark = 2130837846;
// aapt resource value: 0x7f020157
- public const int ic_mr_button_connecting_18_dark = 2130837847;
+ public const int ic_mr_button_connecting_17_light = 2130837847;
// aapt resource value: 0x7f020158
- public const int ic_mr_button_connecting_18_light = 2130837848;
+ public const int ic_mr_button_connecting_18_dark = 2130837848;
// aapt resource value: 0x7f020159
- public const int ic_mr_button_connecting_19_dark = 2130837849;
+ public const int ic_mr_button_connecting_18_light = 2130837849;
// aapt resource value: 0x7f02015a
- public const int ic_mr_button_connecting_19_light = 2130837850;
+ public const int ic_mr_button_connecting_19_dark = 2130837850;
// aapt resource value: 0x7f02015b
- public const int ic_mr_button_connecting_20_dark = 2130837851;
+ public const int ic_mr_button_connecting_19_light = 2130837851;
// aapt resource value: 0x7f02015c
- public const int ic_mr_button_connecting_20_light = 2130837852;
+ public const int ic_mr_button_connecting_20_dark = 2130837852;
// aapt resource value: 0x7f02015d
- public const int ic_mr_button_connecting_21_dark = 2130837853;
+ public const int ic_mr_button_connecting_20_light = 2130837853;
// aapt resource value: 0x7f02015e
- public const int ic_mr_button_connecting_21_light = 2130837854;
+ public const int ic_mr_button_connecting_21_dark = 2130837854;
// aapt resource value: 0x7f02015f
- public const int ic_mr_button_connecting_22_dark = 2130837855;
+ public const int ic_mr_button_connecting_21_light = 2130837855;
// aapt resource value: 0x7f020160
- public const int ic_mr_button_connecting_22_light = 2130837856;
+ public const int ic_mr_button_connecting_22_dark = 2130837856;
// aapt resource value: 0x7f020161
- public const int ic_mr_button_connecting_23_dark = 2130837857;
+ public const int ic_mr_button_connecting_22_light = 2130837857;
// aapt resource value: 0x7f020162
- public const int ic_mr_button_connecting_23_light = 2130837858;
+ public const int ic_mr_button_connecting_23_dark = 2130837858;
// aapt resource value: 0x7f020163
- public const int ic_mr_button_connecting_24_dark = 2130837859;
+ public const int ic_mr_button_connecting_23_light = 2130837859;
// aapt resource value: 0x7f020164
- public const int ic_mr_button_connecting_24_light = 2130837860;
+ public const int ic_mr_button_connecting_24_dark = 2130837860;
// aapt resource value: 0x7f020165
- public const int ic_mr_button_connecting_25_dark = 2130837861;
+ public const int ic_mr_button_connecting_24_light = 2130837861;
// aapt resource value: 0x7f020166
- public const int ic_mr_button_connecting_25_light = 2130837862;
+ public const int ic_mr_button_connecting_25_dark = 2130837862;
// aapt resource value: 0x7f020167
- public const int ic_mr_button_connecting_26_dark = 2130837863;
+ public const int ic_mr_button_connecting_25_light = 2130837863;
// aapt resource value: 0x7f020168
- public const int ic_mr_button_connecting_26_light = 2130837864;
+ public const int ic_mr_button_connecting_26_dark = 2130837864;
// aapt resource value: 0x7f020169
- public const int ic_mr_button_connecting_27_dark = 2130837865;
+ public const int ic_mr_button_connecting_26_light = 2130837865;
// aapt resource value: 0x7f02016a
- public const int ic_mr_button_connecting_27_light = 2130837866;
+ public const int ic_mr_button_connecting_27_dark = 2130837866;
// aapt resource value: 0x7f02016b
- public const int ic_mr_button_connecting_28_dark = 2130837867;
+ public const int ic_mr_button_connecting_27_light = 2130837867;
// aapt resource value: 0x7f02016c
- public const int ic_mr_button_connecting_28_light = 2130837868;
+ public const int ic_mr_button_connecting_28_dark = 2130837868;
// aapt resource value: 0x7f02016d
- public const int ic_mr_button_connecting_29_dark = 2130837869;
+ public const int ic_mr_button_connecting_28_light = 2130837869;
// aapt resource value: 0x7f02016e
- public const int ic_mr_button_connecting_29_light = 2130837870;
+ public const int ic_mr_button_connecting_29_dark = 2130837870;
// aapt resource value: 0x7f02016f
- public const int ic_mr_button_connecting_30_dark = 2130837871;
+ public const int ic_mr_button_connecting_29_light = 2130837871;
// aapt resource value: 0x7f020170
- public const int ic_mr_button_connecting_30_light = 2130837872;
+ public const int ic_mr_button_connecting_30_dark = 2130837872;
// aapt resource value: 0x7f020171
- public const int ic_mr_button_disabled_dark = 2130837873;
+ public const int ic_mr_button_connecting_30_light = 2130837873;
// aapt resource value: 0x7f020172
- public const int ic_mr_button_disabled_light = 2130837874;
+ public const int ic_mr_button_disabled_dark = 2130837874;
// aapt resource value: 0x7f020173
- public const int ic_mr_button_disconnected_dark = 2130837875;
+ public const int ic_mr_button_disabled_light = 2130837875;
// aapt resource value: 0x7f020174
- public const int ic_mr_button_disconnected_light = 2130837876;
+ public const int ic_mr_button_disconnected_dark = 2130837876;
// aapt resource value: 0x7f020175
- public const int ic_mr_button_grey = 2130837877;
+ public const int ic_mr_button_disconnected_light = 2130837877;
// aapt resource value: 0x7f020176
- public const int ic_mtrl_chip_checked_black = 2130837878;
+ public const int ic_mr_button_grey = 2130837878;
// aapt resource value: 0x7f020177
- public const int ic_mtrl_chip_checked_circle = 2130837879;
+ public const int ic_mtrl_chip_checked_black = 2130837879;
// aapt resource value: 0x7f020178
- public const int ic_mtrl_chip_close_circle = 2130837880;
+ public const int ic_mtrl_chip_checked_circle = 2130837880;
// aapt resource value: 0x7f020179
- public const int ic_vol_type_speaker_dark = 2130837881;
+ public const int ic_mtrl_chip_close_circle = 2130837881;
// aapt resource value: 0x7f02017a
- public const int ic_vol_type_speaker_group_dark = 2130837882;
+ public const int ic_vol_type_speaker_dark = 2130837882;
// aapt resource value: 0x7f02017b
- public const int ic_vol_type_speaker_group_light = 2130837883;
+ public const int ic_vol_type_speaker_group_dark = 2130837883;
// aapt resource value: 0x7f02017c
- public const int ic_vol_type_speaker_light = 2130837884;
+ public const int ic_vol_type_speaker_group_light = 2130837884;
// aapt resource value: 0x7f02017d
- public const int ic_vol_type_tv_dark = 2130837885;
+ public const int ic_vol_type_speaker_light = 2130837885;
// aapt resource value: 0x7f02017e
- public const int ic_vol_type_tv_light = 2130837886;
+ public const int ic_vol_type_tv_dark = 2130837886;
// aapt resource value: 0x7f02017f
- public const int Icon = 2130837887;
+ public const int ic_vol_type_tv_light = 2130837887;
// aapt resource value: 0x7f020180
- public const int LibraryAdd = 2130837888;
+ public const int Icon = 2130837888;
// aapt resource value: 0x7f020181
- public const int long_icon = 2130837889;
+ public const int LibraryAdd = 2130837889;
// aapt resource value: 0x7f020182
- public const int More = 2130837890;
+ public const int long_icon = 2130837890;
// aapt resource value: 0x7f020183
- public const int mr_button_connected_dark = 2130837891;
+ public const int More = 2130837891;
// aapt resource value: 0x7f020184
- public const int mr_button_connected_light = 2130837892;
+ public const int mr_button_connected_dark = 2130837892;
// aapt resource value: 0x7f020185
- public const int mr_button_connecting_dark = 2130837893;
+ public const int mr_button_connected_light = 2130837893;
// aapt resource value: 0x7f020186
- public const int mr_button_connecting_light = 2130837894;
+ public const int mr_button_connecting_dark = 2130837894;
// aapt resource value: 0x7f020187
- public const int mr_button_dark = 2130837895;
+ public const int mr_button_connecting_light = 2130837895;
// aapt resource value: 0x7f020188
- public const int mr_button_light = 2130837896;
+ public const int mr_button_dark = 2130837896;
// aapt resource value: 0x7f020189
- public const int mr_dialog_close_dark = 2130837897;
+ public const int mr_button_light = 2130837897;
// aapt resource value: 0x7f02018a
- public const int mr_dialog_close_light = 2130837898;
+ public const int mr_dialog_close_dark = 2130837898;
// aapt resource value: 0x7f02018b
- public const int mr_dialog_material_background_dark = 2130837899;
+ public const int mr_dialog_close_light = 2130837899;
// aapt resource value: 0x7f02018c
- public const int mr_dialog_material_background_light = 2130837900;
+ public const int mr_dialog_material_background_dark = 2130837900;
// aapt resource value: 0x7f02018d
- public const int mr_group_collapse = 2130837901;
+ public const int mr_dialog_material_background_light = 2130837901;
// aapt resource value: 0x7f02018e
- public const int mr_group_expand = 2130837902;
+ public const int mr_group_collapse = 2130837902;
// aapt resource value: 0x7f02018f
- public const int mr_media_pause_dark = 2130837903;
+ public const int mr_group_expand = 2130837903;
// aapt resource value: 0x7f020190
- public const int mr_media_pause_light = 2130837904;
+ public const int mr_media_pause_dark = 2130837904;
// aapt resource value: 0x7f020191
- public const int mr_media_play_dark = 2130837905;
+ public const int mr_media_pause_light = 2130837905;
// aapt resource value: 0x7f020192
- public const int mr_media_play_light = 2130837906;
+ public const int mr_media_play_dark = 2130837906;
// aapt resource value: 0x7f020193
- public const int mr_media_stop_dark = 2130837907;
+ public const int mr_media_play_light = 2130837907;
// aapt resource value: 0x7f020194
- public const int mr_media_stop_light = 2130837908;
+ public const int mr_media_stop_dark = 2130837908;
// aapt resource value: 0x7f020195
- public const int mr_vol_type_audiotrack_dark = 2130837909;
+ public const int mr_media_stop_light = 2130837909;
// aapt resource value: 0x7f020196
- public const int mr_vol_type_audiotrack_light = 2130837910;
+ public const int mr_vol_type_audiotrack_dark = 2130837910;
// aapt resource value: 0x7f020197
- public const int mtrl_snackbar_background = 2130837911;
+ public const int mr_vol_type_audiotrack_light = 2130837911;
// aapt resource value: 0x7f020198
- public const int mtrl_tabs_default_indicator = 2130837912;
+ public const int mtrl_snackbar_background = 2130837912;
// aapt resource value: 0x7f020199
- public const int navigation_empty_icon = 2130837913;
+ public const int mtrl_tabs_default_indicator = 2130837913;
// aapt resource value: 0x7f02019a
- public const int needProcessing = 2130837914;
+ public const int navigation_empty_icon = 2130837914;
// aapt resource value: 0x7f02019b
- public const int noAlbum = 2130837915;
+ public const int needProcessing = 2130837915;
// aapt resource value: 0x7f02019c
- public const int notification_action_background = 2130837916;
+ public const int noAlbum = 2130837916;
// aapt resource value: 0x7f02019d
- public const int notification_bg = 2130837917;
+ public const int notification_action_background = 2130837917;
// aapt resource value: 0x7f02019e
- public const int notification_bg_low = 2130837918;
+ public const int notification_bg = 2130837918;
// aapt resource value: 0x7f02019f
- public const int notification_bg_low_normal = 2130837919;
+ public const int notification_bg_low = 2130837919;
// aapt resource value: 0x7f0201a0
- public const int notification_bg_low_pressed = 2130837920;
+ public const int notification_bg_low_normal = 2130837920;
// aapt resource value: 0x7f0201a1
- public const int notification_bg_normal = 2130837921;
+ public const int notification_bg_low_pressed = 2130837921;
// aapt resource value: 0x7f0201a2
- public const int notification_bg_normal_pressed = 2130837922;
+ public const int notification_bg_normal = 2130837922;
// aapt resource value: 0x7f0201a3
- public const int notification_icon_background = 2130837923;
-
- // aapt resource value: 0x7f0201eb
- public const int notification_template_icon_bg = 2130837995;
-
- // aapt resource value: 0x7f0201ec
- public const int notification_template_icon_low_bg = 2130837996;
+ public const int notification_bg_normal_pressed = 2130837923;
// aapt resource value: 0x7f0201a4
- public const int notification_tile_bg = 2130837924;
+ public const int notification_icon_background = 2130837924;
+
+ // aapt resource value: 0x7f0201ed
+ public const int notification_template_icon_bg = 2130837997;
+
+ // aapt resource value: 0x7f0201ee
+ public const int notification_template_icon_low_bg = 2130837998;
// aapt resource value: 0x7f0201a5
- public const int NotificationIcon = 2130837925;
+ public const int notification_tile_bg = 2130837925;
// aapt resource value: 0x7f0201a6
- public const int notify_panel_notification_icon_bg = 2130837926;
+ public const int NotificationIcon = 2130837926;
// aapt resource value: 0x7f0201a7
- public const int OpenInBrowser = 2130837927;
+ public const int notify_panel_notification_icon_bg = 2130837927;
// aapt resource value: 0x7f0201a8
- public const int Pause = 2130837928;
+ public const int OpenInBrowser = 2130837928;
// aapt resource value: 0x7f0201a9
- public const int Play = 2130837929;
+ public const int Pause = 2130837929;
// aapt resource value: 0x7f0201aa
- public const int PlayCircle = 2130837930;
+ public const int Play = 2130837930;
// aapt resource value: 0x7f0201ab
- public const int PlaylistAdd = 2130837931;
+ public const int PlayCircle = 2130837931;
// aapt resource value: 0x7f0201ac
- public const int PlaylistPlay = 2130837932;
+ public const int PlaylistAdd = 2130837932;
// aapt resource value: 0x7f0201ad
- public const int preference_list_divider_material = 2130837933;
+ public const int PlaylistPlay = 2130837933;
// aapt resource value: 0x7f0201ae
- public const int PublicIcon = 2130837934;
+ public const int preference_list_divider_material = 2130837934;
// aapt resource value: 0x7f0201af
- public const int quantum_ic_art_track_grey600_48 = 2130837935;
+ public const int PublicIcon = 2130837935;
// aapt resource value: 0x7f0201b0
- public const int quantum_ic_bigtop_updates_white_24 = 2130837936;
+ public const int quantum_ic_art_track_grey600_48 = 2130837936;
// aapt resource value: 0x7f0201b1
- public const int quantum_ic_cast_connected_white_24 = 2130837937;
+ public const int quantum_ic_bigtop_updates_white_24 = 2130837937;
// aapt resource value: 0x7f0201b2
- public const int quantum_ic_cast_white_36 = 2130837938;
+ public const int quantum_ic_cast_connected_white_24 = 2130837938;
// aapt resource value: 0x7f0201b3
- public const int quantum_ic_clear_white_24 = 2130837939;
+ public const int quantum_ic_cast_white_36 = 2130837939;
// aapt resource value: 0x7f0201b4
- public const int quantum_ic_closed_caption_grey600_36 = 2130837940;
+ public const int quantum_ic_clear_white_24 = 2130837940;
// aapt resource value: 0x7f0201b5
- public const int quantum_ic_closed_caption_white_36 = 2130837941;
+ public const int quantum_ic_closed_caption_grey600_36 = 2130837941;
// aapt resource value: 0x7f0201b6
- public const int quantum_ic_forward_10_white_24 = 2130837942;
+ public const int quantum_ic_closed_caption_white_36 = 2130837942;
// aapt resource value: 0x7f0201b7
- public const int quantum_ic_forward_30_grey600_36 = 2130837943;
+ public const int quantum_ic_forward_10_white_24 = 2130837943;
// aapt resource value: 0x7f0201b8
- public const int quantum_ic_forward_30_white_24 = 2130837944;
+ public const int quantum_ic_forward_30_grey600_36 = 2130837944;
// aapt resource value: 0x7f0201b9
- public const int quantum_ic_forward_30_white_36 = 2130837945;
+ public const int quantum_ic_forward_30_white_24 = 2130837945;
// aapt resource value: 0x7f0201ba
- public const int quantum_ic_keyboard_arrow_down_white_36 = 2130837946;
+ public const int quantum_ic_forward_30_white_36 = 2130837946;
// aapt resource value: 0x7f0201bb
- public const int quantum_ic_pause_circle_filled_grey600_36 = 2130837947;
+ public const int quantum_ic_keyboard_arrow_down_white_36 = 2130837947;
// aapt resource value: 0x7f0201bc
- public const int quantum_ic_pause_circle_filled_white_36 = 2130837948;
+ public const int quantum_ic_pause_circle_filled_grey600_36 = 2130837948;
// aapt resource value: 0x7f0201bd
- public const int quantum_ic_pause_grey600_36 = 2130837949;
+ public const int quantum_ic_pause_circle_filled_white_36 = 2130837949;
// aapt resource value: 0x7f0201be
- public const int quantum_ic_pause_grey600_48 = 2130837950;
+ public const int quantum_ic_pause_grey600_36 = 2130837950;
// aapt resource value: 0x7f0201bf
- public const int quantum_ic_pause_white_24 = 2130837951;
+ public const int quantum_ic_pause_grey600_48 = 2130837951;
// aapt resource value: 0x7f0201c0
- public const int quantum_ic_play_arrow_grey600_36 = 2130837952;
+ public const int quantum_ic_pause_white_24 = 2130837952;
// aapt resource value: 0x7f0201c1
- public const int quantum_ic_play_arrow_grey600_48 = 2130837953;
+ public const int quantum_ic_play_arrow_grey600_36 = 2130837953;
// aapt resource value: 0x7f0201c2
- public const int quantum_ic_play_arrow_white_24 = 2130837954;
+ public const int quantum_ic_play_arrow_grey600_48 = 2130837954;
// aapt resource value: 0x7f0201c3
- public const int quantum_ic_play_circle_filled_grey600_36 = 2130837955;
+ public const int quantum_ic_play_arrow_white_24 = 2130837955;
// aapt resource value: 0x7f0201c4
- public const int quantum_ic_play_circle_filled_white_36 = 2130837956;
+ public const int quantum_ic_play_circle_filled_grey600_36 = 2130837956;
// aapt resource value: 0x7f0201c5
- public const int quantum_ic_refresh_white_24 = 2130837957;
+ public const int quantum_ic_play_circle_filled_white_36 = 2130837957;
// aapt resource value: 0x7f0201c6
- public const int quantum_ic_replay_10_white_24 = 2130837958;
+ public const int quantum_ic_refresh_white_24 = 2130837958;
// aapt resource value: 0x7f0201c7
- public const int quantum_ic_replay_30_grey600_36 = 2130837959;
+ public const int quantum_ic_replay_10_white_24 = 2130837959;
// aapt resource value: 0x7f0201c8
- public const int quantum_ic_replay_30_white_24 = 2130837960;
+ public const int quantum_ic_replay_30_grey600_36 = 2130837960;
// aapt resource value: 0x7f0201c9
- public const int quantum_ic_replay_30_white_36 = 2130837961;
+ public const int quantum_ic_replay_30_white_24 = 2130837961;
// aapt resource value: 0x7f0201ca
- public const int quantum_ic_replay_white_24 = 2130837962;
+ public const int quantum_ic_replay_30_white_36 = 2130837962;
// aapt resource value: 0x7f0201cb
- public const int quantum_ic_skip_next_grey600_36 = 2130837963;
+ public const int quantum_ic_replay_white_24 = 2130837963;
// aapt resource value: 0x7f0201cc
- public const int quantum_ic_skip_next_white_24 = 2130837964;
+ public const int quantum_ic_skip_next_grey600_36 = 2130837964;
// aapt resource value: 0x7f0201cd
- public const int quantum_ic_skip_next_white_36 = 2130837965;
+ public const int quantum_ic_skip_next_white_24 = 2130837965;
// aapt resource value: 0x7f0201ce
- public const int quantum_ic_skip_previous_grey600_36 = 2130837966;
+ public const int quantum_ic_skip_next_white_36 = 2130837966;
// aapt resource value: 0x7f0201cf
- public const int quantum_ic_skip_previous_white_24 = 2130837967;
+ public const int quantum_ic_skip_previous_grey600_36 = 2130837967;
// aapt resource value: 0x7f0201d0
- public const int quantum_ic_skip_previous_white_36 = 2130837968;
+ public const int quantum_ic_skip_previous_white_24 = 2130837968;
// aapt resource value: 0x7f0201d1
- public const int quantum_ic_stop_grey600_36 = 2130837969;
+ public const int quantum_ic_skip_previous_white_36 = 2130837969;
// aapt resource value: 0x7f0201d2
- public const int quantum_ic_stop_grey600_48 = 2130837970;
+ public const int quantum_ic_stop_grey600_36 = 2130837970;
// aapt resource value: 0x7f0201d3
- public const int quantum_ic_stop_white_24 = 2130837971;
+ public const int quantum_ic_stop_grey600_48 = 2130837971;
// aapt resource value: 0x7f0201d4
- public const int quantum_ic_volume_off_grey600_36 = 2130837972;
+ public const int quantum_ic_stop_white_24 = 2130837972;
// aapt resource value: 0x7f0201d5
- public const int quantum_ic_volume_off_white_36 = 2130837973;
+ public const int quantum_ic_volume_off_grey600_36 = 2130837973;
// aapt resource value: 0x7f0201d6
- public const int quantum_ic_volume_up_grey600_36 = 2130837974;
+ public const int quantum_ic_volume_off_white_36 = 2130837974;
// aapt resource value: 0x7f0201d7
- public const int quantum_ic_volume_up_white_36 = 2130837975;
+ public const int quantum_ic_volume_up_grey600_36 = 2130837975;
// aapt resource value: 0x7f0201d8
- public const int Queue = 2130837976;
+ public const int quantum_ic_volume_up_white_36 = 2130837976;
// aapt resource value: 0x7f0201d9
- public const int Refine = 2130837977;
+ public const int Queue = 2130837977;
// aapt resource value: 0x7f0201da
- public const int Reorder = 2130837978;
+ public const int Refine = 2130837978;
// aapt resource value: 0x7f0201db
- public const int Repeat = 2130837979;
+ public const int Reorder = 2130837979;
// aapt resource value: 0x7f0201dc
- public const int Search = 2130837980;
+ public const int Repeat = 2130837980;
// aapt resource value: 0x7f0201dd
- public const int semiDarkLinear = 2130837981;
+ public const int Search = 2130837981;
// aapt resource value: 0x7f0201de
- public const int Shuffle = 2130837982;
+ public const int semiDarkLinear = 2130837982;
// aapt resource value: 0x7f0201df
- public const int SkipNext = 2130837983;
+ public const int Shuffle = 2130837983;
// aapt resource value: 0x7f0201e0
- public const int SkipPrevious = 2130837984;
+ public const int SkipNext = 2130837984;
// aapt resource value: 0x7f0201e1
- public const int SplashArt = 2130837985;
+ public const int SkipPrevious = 2130837985;
// aapt resource value: 0x7f0201e2
- public const int splashScreen = 2130837986;
+ public const int SplashArt = 2130837986;
// aapt resource value: 0x7f0201e3
- public const int Sync = 2130837987;
+ public const int splashScreen = 2130837987;
// aapt resource value: 0x7f0201e4
- public const int SyncDisabled = 2130837988;
+ public const int Sync = 2130837988;
// aapt resource value: 0x7f0201e5
- public const int SyncError = 2130837989;
+ public const int SyncDisabled = 2130837989;
// aapt resource value: 0x7f0201e6
- public const int Timer = 2130837990;
+ public const int SyncError = 2130837990;
// aapt resource value: 0x7f0201e7
- public const int tooltip_frame_dark = 2130837991;
+ public const int Timer = 2130837991;
// aapt resource value: 0x7f0201e8
- public const int tooltip_frame_light = 2130837992;
+ public const int tooltip_frame_dark = 2130837992;
// aapt resource value: 0x7f0201e9
- public const int TranslucentBackground = 2130837993;
+ public const int tooltip_frame_light = 2130837993;
// aapt resource value: 0x7f0201ea
- public const int YtPlay = 2130837994;
+ public const int TranslucentBackground = 2130837994;
+
+ // aapt resource value: 0x7f0201eb
+ public const int Unfav = 2130837995;
+
+ // aapt resource value: 0x7f0201ec
+ public const int YtPlay = 2130837996;
static Drawable()
{
@@ -4982,11 +4988,11 @@ namespace Opus
// aapt resource value: 0x7f0b0065
public const int META = 2131427429;
- // aapt resource value: 0x7f0b01b1
- public const int PreferenceFragment = 2131427761;
+ // aapt resource value: 0x7f0b01b3
+ public const int PreferenceFragment = 2131427763;
- // aapt resource value: 0x7f0b01b2
- public const int PreferenceScreen = 2131427762;
+ // aapt resource value: 0x7f0b01b4
+ public const int PreferenceScreen = 2131427764;
// aapt resource value: 0x7f0b0066
public const int SHIFT = 2131427430;
@@ -4994,8 +5000,8 @@ namespace Opus
// aapt resource value: 0x7f0b0067
public const int SYM = 2131427431;
- // aapt resource value: 0x7f0b01b4
- public const int accountPreference = 2131427764;
+ // aapt resource value: 0x7f0b01b6
+ public const int accountPreference = 2131427766;
// aapt resource value: 0x7f0b00fd
public const int action = 2131427581;
@@ -5081,8 +5087,8 @@ namespace Opus
// aapt resource value: 0x7f0b0057
public const int add = 2131427415;
- // aapt resource value: 0x7f0b01d2
- public const int addToQueue = 2131427794;
+ // aapt resource value: 0x7f0b01d3
+ public const int addToQueue = 2131427795;
// aapt resource value: 0x7f0b00cc
public const int added = 2131427532;
@@ -5105,17 +5111,17 @@ namespace Opus
// aapt resource value: 0x7f0b0068
public const int always = 2131427432;
- // aapt resource value: 0x7f0b01bc
- public const int apAlbum = 2131427772;
-
// aapt resource value: 0x7f0b01be
- public const int apTitle = 2131427774;
+ public const int apAlbum = 2131427774;
+
+ // aapt resource value: 0x7f0b01c0
+ public const int apTitle = 2131427776;
// aapt resource value: 0x7f0b0119
public const int appbar = 2131427609;
- // aapt resource value: 0x7f0b01a9
- public const int artist = 2131427753;
+ // aapt resource value: 0x7f0b01ab
+ public const int artist = 2131427755;
// aapt resource value: 0x7f0b008d
public const int async = 2131427469;
@@ -5126,8 +5132,8 @@ namespace Opus
// aapt resource value: 0x7f0b004b
public const int auto = 2131427403;
- // aapt resource value: 0x7f0b01bb
- public const int autoplay = 2131427771;
+ // aapt resource value: 0x7f0b01bd
+ public const int autoplay = 2131427773;
// aapt resource value: 0x7f0b011d
public const int backToolbar = 2131427613;
@@ -5141,8 +5147,8 @@ namespace Opus
// aapt resource value: 0x7f0b005f
public const int beginning = 2131427423;
- // aapt resource value: 0x7f0b01b3
- public const int behavior = 2131427763;
+ // aapt resource value: 0x7f0b01b5
+ public const int behavior = 2131427765;
// aapt resource value: 0x7f0b008e
public const int blocking = 2131427470;
@@ -5153,14 +5159,14 @@ namespace Opus
// aapt resource value: 0x7f0b006d
public const int bottom = 2131427437;
- // aapt resource value: 0x7f0b01b9
- public const int bottomDivider = 2131427769;
+ // aapt resource value: 0x7f0b01bb
+ public const int bottomDivider = 2131427771;
// aapt resource value: 0x7f0b0138
public const int bottomView = 2131427640;
- // aapt resource value: 0x7f0b01cd
- public const int browseLayout = 2131427789;
+ // aapt resource value: 0x7f0b01ce
+ public const int browseLayout = 2131427790;
// aapt resource value: 0x7f0b00d7
public const int browseList = 2131427543;
@@ -5324,8 +5330,8 @@ namespace Opus
// aapt resource value: 0x7f0b009e
public const int default_activity_button = 2131427486;
- // aapt resource value: 0x7f0b01cf
- public const int delete = 2131427791;
+ // aapt resource value: 0x7f0b01d0
+ public const int delete = 2131427792;
// aapt resource value: 0x7f0b010e
public const int design_bottom_sheet = 2131427598;
@@ -5351,17 +5357,17 @@ namespace Opus
// aapt resource value: 0x7f0b0192
public const int downButton = 2131427730;
- // aapt resource value: 0x7f0b01d8
- public const int download = 2131427800;
+ // aapt resource value: 0x7f0b01d9
+ public const int download = 2131427801;
- // aapt resource value: 0x7f0b01d0
- public const int downloadMDfromYT = 2131427792;
+ // aapt resource value: 0x7f0b01d1
+ public const int downloadMDfromYT = 2131427793;
// aapt resource value: 0x7f0b0116
public const int downloadStatus = 2131427606;
- // aapt resource value: 0x7f0b01aa
- public const int edit = 2131427754;
+ // aapt resource value: 0x7f0b01ac
+ public const int edit = 2131427756;
// aapt resource value: 0x7f0b00be
public const int edit_query = 2131427518;
@@ -5465,6 +5471,9 @@ namespace Opus
// aapt resource value: 0x7f0b0128
public const int expendChilds = 2131427624;
+ // aapt resource value: 0x7f0b0196
+ public const int fav = 2131427734;
+
// aapt resource value: 0x7f0b0117
public const int fileName = 2131427607;
@@ -5480,8 +5489,8 @@ namespace Opus
// aapt resource value: 0x7f0b0087
public const int filled = 2131427463;
- // aapt resource value: 0x7f0b01d5
- public const int filter = 2131427797;
+ // aapt resource value: 0x7f0b01d6
+ public const int filter = 2131427798;
// aapt resource value: 0x7f0b0092
public const int fit = 2131427474;
@@ -5507,8 +5516,8 @@ namespace Opus
// aapt resource value: 0x7f0b008f
public const int forever = 2131427471;
- // aapt resource value: 0x7f0b01d9
- public const int fork = 2131427801;
+ // aapt resource value: 0x7f0b01da
+ public const int fork = 2131427802;
// aapt resource value: 0x7f0b0017
public const int ghost_view = 2131427351;
@@ -5516,26 +5525,26 @@ namespace Opus
// aapt resource value: 0x7f0b00b0
public const int group_divider = 2131427504;
- // aapt resource value: 0x7f0b01a1
- public const int headerArt = 2131427745;
-
// aapt resource value: 0x7f0b01a3
- public const int headerAuthor = 2131427747;
-
- // aapt resource value: 0x7f0b01a7
- public const int headerMore = 2131427751;
-
- // aapt resource value: 0x7f0b01a4
- public const int headerNumber = 2131427748;
+ public const int headerArt = 2131427747;
// aapt resource value: 0x7f0b01a5
- public const int headerPlay = 2131427749;
+ public const int headerAuthor = 2131427749;
+
+ // aapt resource value: 0x7f0b01a9
+ public const int headerMore = 2131427753;
// aapt resource value: 0x7f0b01a6
- public const int headerShuffle = 2131427750;
+ public const int headerNumber = 2131427750;
- // aapt resource value: 0x7f0b01a2
- public const int headerTitle = 2131427746;
+ // aapt resource value: 0x7f0b01a7
+ public const int headerPlay = 2131427751;
+
+ // aapt resource value: 0x7f0b01a8
+ public const int headerShuffle = 2131427752;
+
+ // aapt resource value: 0x7f0b01a4
+ public const int headerTitle = 2131427748;
// aapt resource value: 0x7f0b0012
public const int home = 2131427346;
@@ -5546,8 +5555,8 @@ namespace Opus
// aapt resource value: 0x7f0b00a0
public const int icon = 2131427488;
- // aapt resource value: 0x7f0b01c6
- public const int icon1 = 2131427782;
+ // aapt resource value: 0x7f0b01c7
+ public const int icon1 = 2131427783;
// aapt resource value: 0x7f0b0126
public const int icon_frame = 2131427622;
@@ -5570,11 +5579,11 @@ namespace Opus
// aapt resource value: 0x7f0b0186
public const int info = 2131427718;
- // aapt resource value: 0x7f0b01a0
- public const int infoPanel = 2131427744;
+ // aapt resource value: 0x7f0b01a2
+ public const int infoPanel = 2131427746;
- // aapt resource value: 0x7f0b01b7
- public const int isLive = 2131427767;
+ // aapt resource value: 0x7f0b01b9
+ public const int isLive = 2131427769;
// aapt resource value: 0x7f0b0090
public const int italic = 2131427472;
@@ -5588,8 +5597,8 @@ namespace Opus
// aapt resource value: 0x7f0b010a
public const int largeLabel = 2131427594;
- // aapt resource value: 0x7f0b0199
- public const int lastButton = 2131427737;
+ // aapt resource value: 0x7f0b019b
+ public const int lastButton = 2131427739;
// aapt resource value: 0x7f0b007c
public const int left = 2131427452;
@@ -5603,8 +5612,8 @@ namespace Opus
// aapt resource value: 0x7f0b0029
public const int line1 = 2131427369;
- // aapt resource value: 0x7f0b01c9
- public const int line2 = 2131427785;
+ // aapt resource value: 0x7f0b01ca
+ public const int line2 = 2131427786;
// aapt resource value: 0x7f0b002a
public const int line3 = 2131427370;
@@ -5639,17 +5648,17 @@ namespace Opus
// aapt resource value: 0x7f0b0100
public const int logo = 2131427584;
- // aapt resource value: 0x7f0b01cb
- public const int masked = 2131427787;
+ // aapt resource value: 0x7f0b01cc
+ public const int masked = 2131427788;
- // aapt resource value: 0x7f0b01c4
- public const int maxValue = 2131427780;
+ // aapt resource value: 0x7f0b01c5
+ public const int maxValue = 2131427781;
// aapt resource value: 0x7f0b017f
public const int media_actions = 2131427711;
- // aapt resource value: 0x7f0b01d6
- public const int media_route_menu_item = 2131427798;
+ // aapt resource value: 0x7f0b01d7
+ public const int media_route_menu_item = 2131427799;
// aapt resource value: 0x7f0b00cb
public const int message = 2131427531;
@@ -5678,8 +5687,8 @@ namespace Opus
// aapt resource value: 0x7f0b0061
public const int middle = 2131427425;
- // aapt resource value: 0x7f0b01c3
- public const int minValue = 2131427779;
+ // aapt resource value: 0x7f0b01c4
+ public const int minValue = 2131427780;
// aapt resource value: 0x7f0b0081
public const int mini = 2131427457;
@@ -5696,8 +5705,8 @@ namespace Opus
// aapt resource value: 0x7f0b0115
public const int more = 2131427605;
- // aapt resource value: 0x7f0b0197
- public const int moreButton = 2131427735;
+ // aapt resource value: 0x7f0b0199
+ public const int moreButton = 2131427737;
// aapt resource value: 0x7f0b0164
public const int mr_art = 2131427684;
@@ -5846,8 +5855,8 @@ namespace Opus
// aapt resource value: 0x7f0b0058
public const int multiply = 2131427416;
- // aapt resource value: 0x7f0b01cc
- public const int musicLayout = 2131427788;
+ // aapt resource value: 0x7f0b01cd
+ public const int musicLayout = 2131427789;
// aapt resource value: 0x7f0b00ff
public const int name = 2131427583;
@@ -5858,8 +5867,8 @@ namespace Opus
// aapt resource value: 0x7f0b006b
public const int never = 2131427435;
- // aapt resource value: 0x7f0b019c
- public const int nextButton = 2131427740;
+ // aapt resource value: 0x7f0b019e
+ public const int nextButton = 2131427742;
// aapt resource value: 0x7f0b0178
public const int noPlaylist = 2131427704;
@@ -5888,8 +5897,8 @@ namespace Opus
// aapt resource value: 0x7f0b0088
public const int outline = 2131427464;
- // aapt resource value: 0x7f0b01c8
- public const int pager = 2131427784;
+ // aapt resource value: 0x7f0b01c9
+ public const int pager = 2131427785;
// aapt resource value: 0x7f0b007f
public const int parallax = 2131427455;
@@ -5906,8 +5915,8 @@ namespace Opus
// aapt resource value: 0x7f0b012e
public const int play = 2131427630;
- // aapt resource value: 0x7f0b019a
- public const int playButton = 2131427738;
+ // aapt resource value: 0x7f0b019c
+ public const int playButton = 2131427740;
// aapt resource value: 0x7f0b018f
public const int playerAlbum = 2131427727;
@@ -5915,8 +5924,8 @@ namespace Opus
// aapt resource value: 0x7f0b0194
public const int playerArtist = 2131427732;
- // aapt resource value: 0x7f0b019b
- public const int playerBuffer = 2131427739;
+ // aapt resource value: 0x7f0b019d
+ public const int playerBuffer = 2131427741;
// aapt resource value: 0x7f0b0146
public const int playerContainer = 2131427654;
@@ -5936,8 +5945,8 @@ namespace Opus
// aapt resource value: 0x7f0b0132
public const int playlistHeader = 2131427634;
- // aapt resource value: 0x7f0b01ce
- public const int playlistLayout = 2131427790;
+ // aapt resource value: 0x7f0b01cf
+ public const int playlistLayout = 2131427791;
// aapt resource value: 0x7f0b0108
public const int playlistLocation = 2131427592;
@@ -5945,8 +5954,8 @@ namespace Opus
// aapt resource value: 0x7f0b0107
public const int playlistName = 2131427591;
- // aapt resource value: 0x7f0b01c0
- public const int playlistURL = 2131427776;
+ // aapt resource value: 0x7f0b01c1
+ public const int playlistURL = 2131427777;
// aapt resource value: 0x7f0b0118
public const int progress = 2131427608;
@@ -5960,20 +5969,20 @@ namespace Opus
// aapt resource value: 0x7f0b0014
public const int progress_horizontal = 2131427348;
- // aapt resource value: 0x7f0b019f
- public const int queue = 2131427743;
+ // aapt resource value: 0x7f0b01a1
+ public const int queue = 2131427745;
- // aapt resource value: 0x7f0b019e
- public const int queueBackground = 2131427742;
+ // aapt resource value: 0x7f0b01a0
+ public const int queueBackground = 2131427744;
// aapt resource value: 0x7f0b018d
public const int queueDrawer = 2131427725;
- // aapt resource value: 0x7f0b019d
- public const int queueParent = 2131427741;
+ // aapt resource value: 0x7f0b019f
+ public const int queueParent = 2131427743;
- // aapt resource value: 0x7f0b01ba
- public const int queueSwitch = 2131427770;
+ // aapt resource value: 0x7f0b01bc
+ public const int queueSwitch = 2131427772;
// aapt resource value: 0x7f0b00b6
public const int radio = 2131427510;
@@ -5981,20 +5990,20 @@ namespace Opus
// aapt resource value: 0x7f0b00cf
public const int recycler = 2131427535;
- // aapt resource value: 0x7f0b01ad
- public const int recycler_view = 2131427757;
+ // aapt resource value: 0x7f0b01af
+ public const int recycler_view = 2131427759;
- // aapt resource value: 0x7f0b01c7
- public const int refine = 2131427783;
+ // aapt resource value: 0x7f0b01c8
+ public const int refine = 2131427784;
- // aapt resource value: 0x7f0b01d3
- public const int rename = 2131427795;
+ // aapt resource value: 0x7f0b01d4
+ public const int rename = 2131427796;
- // aapt resource value: 0x7f0b01c5
- public const int reorder = 2131427781;
+ // aapt resource value: 0x7f0b01c6
+ public const int reorder = 2131427782;
- // aapt resource value: 0x7f0b01bf
- public const int repeat = 2131427775;
+ // aapt resource value: 0x7f0b0195
+ public const int repeat = 2131427733;
// aapt resource value: 0x7f0b007d
public const int right = 2131427453;
@@ -6002,8 +6011,8 @@ namespace Opus
// aapt resource value: 0x7f0b012d
public const int rightButtons = 2131427629;
- // aapt resource value: 0x7f0b01bd
- public const int rightIcon = 2131427773;
+ // aapt resource value: 0x7f0b01bf
+ public const int rightIcon = 2131427775;
// aapt resource value: 0x7f0b0187
public const int right_icon = 2131427719;
@@ -6011,8 +6020,8 @@ namespace Opus
// aapt resource value: 0x7f0b0183
public const int right_side = 2131427715;
- // aapt resource value: 0x7f0b01d4
- public const int saveAsPlaylist = 2131427796;
+ // aapt resource value: 0x7f0b01d5
+ public const int saveAsPlaylist = 2131427797;
// aapt resource value: 0x7f0b0019
public const int save_image_matrix = 2131427353;
@@ -6041,11 +6050,11 @@ namespace Opus
// aapt resource value: 0x7f0b0085
public const int scrollable = 2131427461;
- // aapt resource value: 0x7f0b01c1
- public const int search = 2131427777;
-
// aapt resource value: 0x7f0b01c2
- public const int searchSuggestions = 2131427778;
+ public const int search = 2131427778;
+
+ // aapt resource value: 0x7f0b01c3
+ public const int searchSuggestions = 2131427779;
// aapt resource value: 0x7f0b00c0
public const int search_badge = 2131427520;
@@ -6083,11 +6092,11 @@ namespace Opus
// aapt resource value: 0x7f0b00e6
public const int seek_bar_controls = 2131427558;
- // aapt resource value: 0x7f0b01ae
- public const int seekbar = 2131427758;
+ // aapt resource value: 0x7f0b01b0
+ public const int seekbar = 2131427760;
- // aapt resource value: 0x7f0b01af
- public const int seekbar_value = 2131427759;
+ // aapt resource value: 0x7f0b01b1
+ public const int seekbar_value = 2131427761;
// aapt resource value: 0x7f0b00ca
public const int select_dialog_listview = 2131427530;
@@ -6095,8 +6104,8 @@ namespace Opus
// aapt resource value: 0x7f0b0077
public const int selected = 2131427447;
- // aapt resource value: 0x7f0b01d7
- public const int settings = 2131427799;
+ // aapt resource value: 0x7f0b01d8
+ public const int settings = 2131427800;
// aapt resource value: 0x7f0b00b2
public const int shortcut = 2131427506;
@@ -6107,8 +6116,8 @@ namespace Opus
// aapt resource value: 0x7f0b0054
public const int showHome = 2131427412;
- // aapt resource value: 0x7f0b0195
- public const int showQueue = 2131427733;
+ // aapt resource value: 0x7f0b0197
+ public const int showQueue = 2131427735;
// aapt resource value: 0x7f0b0055
public const int showTitle = 2131427413;
@@ -6137,11 +6146,11 @@ namespace Opus
// aapt resource value: 0x7f0b0074
public const int snapMargins = 2131427444;
- // aapt resource value: 0x7f0b0198
- public const int songTimer = 2131427736;
+ // aapt resource value: 0x7f0b019a
+ public const int songTimer = 2131427738;
- // aapt resource value: 0x7f0b01b6
- public const int songView = 2131427766;
+ // aapt resource value: 0x7f0b01b8
+ public const int songView = 2131427768;
// aapt resource value: 0x7f0b013e
public const int spArt = 2131427646;
@@ -6176,8 +6185,8 @@ namespace Opus
// aapt resource value: 0x7f0b00a2
public const int spacer = 2131427490;
- // aapt resource value: 0x7f0b01ac
- public const int spinner = 2131427756;
+ // aapt resource value: 0x7f0b01ae
+ public const int spinner = 2131427758;
// aapt resource value: 0x7f0b0015
public const int split_action_bar = 2131427349;
@@ -6224,11 +6233,11 @@ namespace Opus
// aapt resource value: 0x7f0b0096
public const int surface_view = 2131427478;
- // aapt resource value: 0x7f0b01b0
- public const int switchWidget = 2131427760;
+ // aapt resource value: 0x7f0b01b2
+ public const int switchWidget = 2131427762;
- // aapt resource value: 0x7f0b01ab
- public const int sync = 2131427755;
+ // aapt resource value: 0x7f0b01ad
+ public const int sync = 2131427757;
// aapt resource value: 0x7f0b00ce
public const int syncLoading = 2131427534;
@@ -6260,8 +6269,8 @@ namespace Opus
// aapt resource value: 0x7f0b002f
public const int text2 = 2131427375;
- // aapt resource value: 0x7f0b01a8
- public const int textLayout = 2131427752;
+ // aapt resource value: 0x7f0b01aa
+ public const int textLayout = 2131427754;
// aapt resource value: 0x7f0b00a8
public const int textSpacerNoButtons = 2131427496;
@@ -6296,8 +6305,8 @@ namespace Opus
// aapt resource value: 0x7f0b0184
public const int time = 2131427716;
- // aapt resource value: 0x7f0b0196
- public const int timer = 2131427734;
+ // aapt resource value: 0x7f0b0198
+ public const int timer = 2131427736;
// aapt resource value: 0x7f0b0030
public const int title = 2131427376;
@@ -6320,8 +6329,8 @@ namespace Opus
// aapt resource value: 0x7f0b006e
public const int top = 2131427438;
- // aapt resource value: 0x7f0b01b5
- public const int topDivider = 2131427765;
+ // aapt resource value: 0x7f0b01b7
+ public const int topDivider = 2131427767;
// aapt resource value: 0x7f0b00ac
public const int topPanel = 2131427500;
@@ -6344,8 +6353,8 @@ namespace Opus
// aapt resource value: 0x7f0b0020
public const int transition_transform = 2131427360;
- // aapt resource value: 0x7f0b01d1
- public const int undoChange = 2131427793;
+ // aapt resource value: 0x7f0b01d2
+ public const int undoChange = 2131427794;
// aapt resource value: 0x7f0b005d
public const int uniform = 2131427421;
@@ -6365,8 +6374,8 @@ namespace Opus
// aapt resource value: 0x7f0b0028
public const int view_offset_helper = 2131427368;
- // aapt resource value: 0x7f0b01ca
- public const int visible = 2131427786;
+ // aapt resource value: 0x7f0b01cb
+ public const int visible = 2131427787;
// aapt resource value: 0x7f0b016a
public const int volume_item_container = 2131427690;
@@ -6380,8 +6389,8 @@ namespace Opus
// aapt resource value: 0x7f0b005e
public const int wrap_content = 2131427422;
- // aapt resource value: 0x7f0b01b8
- public const int youtubeIcon = 2131427768;
+ // aapt resource value: 0x7f0b01ba
+ public const int youtubeIcon = 2131427770;
// aapt resource value: 0x7f0b0135
public const int ytProgress = 2131427637;
diff --git a/Opus/Resources/drawable/Fav.xml b/Opus/Resources/drawable/Fav.xml
new file mode 100644
index 0000000..3abeabc
--- /dev/null
+++ b/Opus/Resources/drawable/Fav.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Opus/Resources/drawable/Unfav.xml b/Opus/Resources/drawable/Unfav.xml
new file mode 100644
index 0000000..4d271bd
--- /dev/null
+++ b/Opus/Resources/drawable/Unfav.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Opus/Resources/layout/QueueFooter.xml b/Opus/Resources/layout/QueueFooter.xml
index 4282844..af1d526 100644
--- a/Opus/Resources/layout/QueueFooter.xml
+++ b/Opus/Resources/layout/QueueFooter.xml
@@ -28,6 +28,10 @@
android:layout_height="wrap_content"
android:textStyle="bold"
android:textSize="20sp"
+ android:shadowDx="1.5"
+ android:shadowDy="1.3"
+ android:shadowRadius="1.3"
+ android:shadowColor="#000"
android:text="@string/autoplay"/>
-
+
+
+
+