Announcement

Collapse
No announcement yet.

Announcement

Collapse
No announcement yet.

[ROM] Beelink GT1 / Alfawise S92 TVStock Nexus ROM (Android TV 7.1)

Collapse
This is a sticky topic.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    It looks like the Bluetooth is still crashing, and I still can't enable developer mode to see the crash logs

    edit : okay, I can use Bluetooth when using the Android TV settings sidebar, but not when using the full stock settings app
    edit2 and I can enable ADB by using the sidebar too, it looks like the regular settings app is just wrecked

    Comment


    • Guest's Avatar
      Guest commented
      Editing a comment
      Yes, that's due to the ActionBar bug, but I'm surprised that you can access the standard Settings app. Settings->More Settings should be disabled on the Android TV ROMs. How are you launching it?

    Hi...The onedrive links not work. It's says The file may be moved or missing.

    Thanks for the great job!!!!!

    Comment


    • Guest's Avatar
      Guest commented
      Editing a comment
      Yeah, apparently Microsoft doesn't like me sharing 90GB worth of ROMs. I'm archiving now to http://freaktab.org/3~f, which should clear some space.

    Guest I launch it from the Action Bar just open the notifications drawer (maybe twice to expand the top part) and there is a cog icon there. I guess that Android TV was never meant to have an action bar so they never linked the ATV settings to it, therefore it opens the regular settings which are broken.

    This leads me to another question : which intent/action/activity should I use to open the ATV settings drawer ? Will the regular settings intent work (android.provider.Settings.ACTION_SETTINGS) ?

    Comment


    • Guest's Avatar
      Guest commented
      Editing a comment
      Oh, you mean the status bar? I'd forgotten about that entry point, and until the Action Bar bug is fixed that will be a problem. Don't do that! :-)

      For Android TV, the intent to open the Settings drawer is com.android.tv.settings.MainSettings.

    Hi Magendaz, thank you very much for your great job with this ROM.
    I've just 3 questions about it, if you can support me:
    1 - How can i customize contents shown as suggestion in the dashboard (youtube videos, etc.). It does not show my favourites, it seems to show random contents not customizable
    2 - How to massive clear notifications
    3 - How to massive close all apps running in background

    Thank you very much

    Comment


      Nav bar is missing even i turned it on from the settings

      Comment


      • Guest's Avatar
        Guest commented
        Editing a comment
        Really? It's working fine for me. Anyone else having trouble?

      Originally posted by stefanop View Post
      Hi Magendaz, thank you very much for your great job with this ROM.
      I've just 3 questions about it, if you can support me:
      1 - How can i customize contents shown as suggestion in the dashboard (youtube videos, etc.). It does not show my favourites, it seems to show random contents not customizable
      2 - How to massive clear notifications
      3 - How to massive close all apps running in background

      Thank you very much
      +1 on those status bar massive notifications clearing, it really is irritating my eyes..lol

      Comment


      • Guest's Avatar
        Guest commented
        Editing a comment
        So, the status bar should only be visible if you drag a mouse to the upper edge of the screen, and it auto-hides after that. I kept the feature in there for folks who might be using a mouse and want to check it, but it's not actually supposed to be visible on Android TV.

        Are you guys saying that you prefer to go back to the old way where the status bar was hidden all the time in Android TV?

      Hi everyone, would it be possible in the future to have a "delete all" button to close all apps in the background? Thanks for the work you do Guest

      Comment


      • Guest's Avatar
        Guest commented
        Editing a comment
        Well, if you double-press the Home button, you'll see the active apps and there's a "dismiss" button for each. Unfortunately, they don't have a "dismiss all", but that might come with Oreo.

      Originally posted by Yugo79 View Post
      Hi everyone, would it be possible in the future to have a "delete all" button to close all apps in the background? Thanks for the work you do Guest
      if you use xposed framework the gravity box module can add this stuff, plus much more.

      worth a look, I use it just for "obb on sd"

      Comment


        Originally posted by tillaz87 View Post

        if you use xposed framework the gravity box module can add this stuff, plus much more.

        worth a look, I use it just for "obb on sd"
        now you are curious about me. Return as with Marshmallow on xposed smartphones and gravitybox

        Comment


          Magendanz Looks like I've found the fix for action bar bug.. also now looks like the settings.apk crashing is a separate issue though

          Will post it soon just want to check something first.

          Comment


            Originally posted by Yugo79 View Post
            now you are curious about me. Return as with Marshmallow on xposed smartphones and gravitybox
            Yeah i though this was normal android rom thread, wont work on tv rom

            Comment


              So, the Action bar bug is 100% fixed and not related to settings.apk crashing <~ That is a different problem.

              here is add away without the fix on beelink based ATV ROM

              Click image for larger version  Name:	Screenshot_20171123-230925.png Views:	1 Size:	111.7 KB ID:	688174

              and after the fix

              Click image for larger version  Name:	Screenshot_20171123-230322.png Views:	1 Size:	123.7 KB ID:	688173

              Settings is still broken though.. so its definitely unrelated, going to have a quick look at it before posting fix

              Click image for larger version  Name:	Screenshot_20171123-230657.png Views:	1 Size:	425.7 KB ID:	688175

              Comment


                I've now fixed the settings.apk crashing so it all fixed now..

                will post how its all done tomorrow afternoon as its getting late here in the uk

                Comment


                  Sorry tillaz87 , we've actually had a fix for the Settings crash for a while. Is this what you ended up with?

                  Code:
                  ---
                   packages/SettingsLib/src/com/android/settingslib/drawer/SettingsDrawerActivity.java | 14 +++++++++-----
                   1 file changed, 9 insertions(+), 5 deletions(-)
                  
                  diff --git a/packages/SettingsLib/src/com/android/settingslib/drawer/SettingsDrawerActivity.java b/packages/SettingsLib/src/com/android/settingslib/drawer/SettingsDrawerActivity.java
                  index e6e0243..ef49a11 100644
                  --- a/packages/SettingsLib/src/com/android/settingslib/drawer/SettingsDrawerActivity.java
                  +++ b/packages/SettingsLib/src/com/android/settingslib/drawer/SettingsDrawerActivity.java
                  @@ -263,6 +263,8 @@ public class SettingsDrawerActivity extends Activity {
                       }
                  
                       public void showMenuIcon() {
                  +        if (getActionBar() == null) return;
                  +        
                           mShowingMenu = true;
                           getActionBar().setHomeAsUpIndicator(R.drawable.ic_menu);
                           getActionBar().setHomeActionContentDescription(R.string.content_description_menu_button);
                  @@ -321,12 +323,14 @@ public class SettingsDrawerActivity extends Activity {
                       private void updateUserHandlesIfNeeded(Tile tile) {
                           List<UserHandle> userHandles = tile.userHandle;
                  
                  -        for (int i = userHandles.size() - 1; i >= 0; i--) {
                  -            if (mUserManager.getUserInfo(userHandles.get(i).getIdentifier()) == null) {
                  -                if (DEBUG) {
                  -                    Log.d(TAG, "Delete the user: " + userHandles.get(i).getIdentifier());
                  +        if (mUserManager != null) {
                  +            for (int i = userHandles.size() - 1; i >= 0; i--) {
                  +                if (mUserManager.getUserInfo(userHandles.get(i).getIdentifier()) == null) {
                  +                    if (DEBUG) {
                  +                        Log.d(TAG, "Delete the user: " + userHandles.get(i).getIdentifier());
                  +                    }
                  +                    userHandles.remove(i);
                                   }
                  -                userHandles.remove(i);
                               }
                           }
                       }
                  --

                  Comment


                    Originally posted by tillaz87 View Post
                    I've now fixed the settings.apk crashing so it all fixed now..

                    will post how its all done tomorrow afternoon as its getting late here in the uk
                    Is it possible to tie it all up in one neat bowl(zip) and flash through twrp please?

                    Comment

                    Working...
                    X