diff --git a/app/src/main/assets/retro-changelog.html b/app/src/main/assets/retro-changelog.html index bae0f2a6..5fb28570 100644 --- a/app/src/main/assets/retro-changelog.html +++ b/app/src/main/assets/retro-changelog.html @@ -1 +1 @@ -

Subscribe to PewDiePie 👊

v3.1.240

v3.1.200

v3.0.570

If you see entire app white or dark or black select same theme in settings to fix

FAQ's

*If you face any UI related issues you clear app data and cache, if its not working try to uninstall and install again.

\ No newline at end of file +

Subscribe to PewDiePie 👊

v3.1.240

v3.1.200

v3.0.570

If you see entire app white or dark or black select same theme in settings to fix

FAQ's

*If you face any UI related issues you clear app data and cache, if its not working try to uninstall and install again.

\ No newline at end of file diff --git a/app/src/main/java/code/name/monkey/retromusic/ui/activities/bugreport/model/DeviceInfo.java b/app/src/main/java/code/name/monkey/retromusic/ui/activities/bugreport/model/DeviceInfo.java index 2e989434..6dabfa86 100644 --- a/app/src/main/java/code/name/monkey/retromusic/ui/activities/bugreport/model/DeviceInfo.java +++ b/app/src/main/java/code/name/monkey/retromusic/ui/activities/bugreport/model/DeviceInfo.java @@ -27,6 +27,7 @@ public class DeviceInfo { private final String hardware = Build.HARDWARE; private final String baseTheme; private final String nowPlayingTheme; + private final boolean isAdaptive; @SuppressLint("NewApi") @SuppressWarnings("deprecation") private final String[] abis = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP ? @@ -55,6 +56,7 @@ public class DeviceInfo { } baseTheme = PreferenceUtil.getInstance().getBaseTheme(); nowPlayingTheme = context.getString(PreferenceUtil.getInstance().getNowPlayingScreen().getTitleRes()); + isAdaptive = PreferenceUtil.getInstance().getAdaptiveColor(); } public String toMarkdown() { @@ -97,6 +99,7 @@ public class DeviceInfo { + "ABIs (32bit): " + Arrays.toString(abis32Bits) + "\n" + "ABIs (64bit): " + Arrays.toString(abis64Bits) + "\n" + "Base theme: " + baseTheme + "\n" - + "Now playing theme: " + nowPlayingTheme; + + "Now playing theme: " + nowPlayingTheme + "\n" + + "Adaptive: " + isAdaptive; } } diff --git a/app/src/main/res/layout/fragment_player_playback_controls.xml b/app/src/main/res/layout/fragment_player_playback_controls.xml index 841f6626..cd8cca83 100755 --- a/app/src/main/res/layout/fragment_player_playback_controls.xml +++ b/app/src/main/res/layout/fragment_player_playback_controls.xml @@ -102,4 +102,4 @@ - + \ No newline at end of file