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

    Originally posted by Magendanz View Post
    Sorry tillaz87 , we've actually had a fix for the Settings crash for a while. Is this what you ended up with?
    No, different to that. but if had fix for a while why is it not included in this rom?

    Comment


    • Guest's Avatar
      Guest commented
      Editing a comment
      I didn't bother because I didn't think it was accessible. These new Shiningworth ROMs hide More Settings on the ATV builds, and the VideoStrong ROMs don't have this problem.
      Last edited by Guest; 24 November 2017, 04:21.

    this post and this on other page, if had a fix for a while why is it still broken?
    Would also know the crash in that post is unrelated to the action bar bug lol I'm a bit confused if were talking about the same thing here ???

    Comment


    • Guest's Avatar
      Guest commented
      Editing a comment
      Yep, I didn't count on people clicking through from the status bar. Just forgot about that entry point. Also, this fix was supposedly checked into the Shiningworth source, so I didn't think the newer releases would have the Settings crash.
      Last edited by Guest; 24 November 2017, 04:23.

    Magendanz
    I didn't bother because I didn't think it was accessible. These new Shiningworth ROMs hide More Settings on the ATV builds.
    Easy to add it back, will download and have a look

    Comment


      So, the fix used for settings.apk in the M8S firmware is

      Decomplle settings.apk

      res\layout-television-v8\settings_with_drawer.xml

      open settings_with_drawer.xml delete all code and paste this inside and save. (ids are already in public.xml)

      Code:
      <?xml version="1.0" encoding="utf-8"?>
      <android.support.v4.widget.DrawerLayout android:id="@id/drawer_layout" android:background="?android:colorPrimaryDark" android:layout_width="fill_parent" android:layout_height="fill_parent"
        xmlns:android="http://schemas.android.com/apk/res/android">
          <LinearLayout android:orientation="vertical" android:id="@id/content_parent" android:fitsSystemWindows="true" android:layout_width="fill_parent" android:layout_height="fill_parent">
              <FrameLayout android:layout_width="fill_parent" android:layout_height="wrap_content" style="?android:attr/actionBarStyle">
                  <Toolbar android:theme="?android:actionBarTheme" android:id="@id/action_bar" android:background="?android:colorPrimary" android:layout_width="fill_parent" android:layout_height="wrap_content" android:navigationContentDescription="@android:string/action_menu_overflow_description" style="?android:attr/toolbarStyle"
                    xmlns:android="http://schemas.android.com/apk/res/android" />
              </FrameLayout>
              <FrameLayout android:id="@id/content_header_container" android:layout_width="fill_parent" android:layout_height="wrap_content" style="?android:attr/actionBarStyle" />
              <FrameLayout android:id="@id/content_frame" android:background="?android:windowBackground" android:layout_width="fill_parent" android:layout_height="fill_parent" />
          </LinearLayout>
          <ListView android:layout_gravity="start" android:id="@id/left_drawer" android:background="?android:colorBackground" android:layout_width="300.0dip" android:layout_height="fill_parent" android:divider="@android:color/transparent" android:dividerHeight="0.0dip" android:choiceMode="singleChoice" />
      </android.support.v4.widget.DrawerLayout>
      recomplie and that's it.

      attached file here settings_with_drawer.zip (extract)


      The ATV action bar bug seems to be by choice in AOSP for some reason

      to fix decompile framework-res.apk

      res\values-television-v8\bools.xml

      change
      Code:
          <bool name="config_defaultWindowFeatureOptionsPanel">false</bool>
      to
      Code:
          <bool name="config_defaultWindowFeatureOptionsPanel">true</bool>
      recomplie, done.



      here is a zip to flash since someone asked

      adds more settings option back to TVsettings and fixes the crash. this OEM firmware already has action bar fix applied
      Attached Files

      Comment


        Originally posted by tillaz87 View Post
        So, the fix used for settings.apk in the M8S firmware is

        Decomplle settings.apk

        res\layout-television-v8\settings_with_drawer.xml

        open settings_with_drawer.xml delete all code and paste this inside and save. (ids are already in public.xml)

        Code:
        <?xml version="1.0" encoding="utf-8"?>
        <android.support.v4.widget.DrawerLayout android:id="@id/drawer_layout" android:background="?android:colorPrimaryDark" android:layout_width="fill_parent" android:layout_height="fill_parent"
        xmlns:android="http://schemas.android.com/apk/res/android">
        <LinearLayout android:orientation="vertical" android:id="@id/content_parent" android:fitsSystemWindows="true" android:layout_width="fill_parent" android:layout_height="fill_parent">
        <FrameLayout android:layout_width="fill_parent" android:layout_height="wrap_content" style="?android:attr/actionBarStyle">
        <Toolbar android:theme="?android:actionBarTheme" android:id="@id/action_bar" android:background="?android:colorPrimary" android:layout_width="fill_parent" android:layout_height="wrap_content" android:navigationContentDescription="@android:string/action_menu_overflow_description" style="?android:attr/toolbarStyle"
        xmlns:android="http://schemas.android.com/apk/res/android" />
        </FrameLayout>
        <FrameLayout android:id="@id/content_header_container" android:layout_width="fill_parent" android:layout_height="wrap_content" style="?android:attr/actionBarStyle" />
        <FrameLayout android:id="@id/content_frame" android:background="?android:windowBackground" android:layout_width="fill_parent" android:layout_height="fill_parent" />
        </LinearLayout>
        <ListView android:layout_gravity="start" android:id="@id/left_drawer" android:background="?android:colorBackground" android:layout_width="300.0dip" android:layout_height="fill_parent" android:divider="@android:color/transparent" android:dividerHeight="0.0dip" android:choiceMode="singleChoice" />
        </android.support.v4.widget.DrawerLayout>
        recomplie and that's it.

        attached file here settings_with_drawer.zip (extract)


        The ATV action bar bug seems to be by choice in AOSP for some reason

        to fix decompile framework-res.apk

        res\values-television-v8\bools.xml

        change
        Code:
         <bool name="config_defaultWindowFeatureOptionsPanel">false</bool>
        to
        Code:
        <bool name="config_defaultWindowFeatureOptionsPanel">true</bool>
        recomplie, done.



        here is a zip to flash since someone asked

        adds more settings option back to TVsettings and fixes the crash. this OEM firmware already has action bar fix applied
        Merci.

        Comment


          Hi everyone,
          I'm new to this forum, I want to thank Magendaz's great job, this ROM works very well, I wanted to ask you a couple of questions, my box: Beelink GT1 Ultimate (G912)
          1 - on what build is based (705N0 or 707N0)?
          2 - in theory that WiFi Chip mounts? Qualcomm QCA9377 or Longsys LTM8830
          3 - App Netflix does not start from error code: ui-800-3 (207003), it seems like a root permissions problem, can it be solved?

          Thanks again for the great work you've done on these Android-TV ROMs I love!!!

          Comment


          • Guest's Avatar
            Guest commented
            Editing a comment
            While I did some prerelease builds on GT1_705N0 as an experiment, all my recent releases have been on the Shiningworth All-in-One ROMs for Amlogic q021 reference boards (Tanix and Vorke being some of their OEMs). These have the advantage of having support for multiple wireless chipsets (including Qualcomm QCA9377, Longsys LTM8830 or AMPAK AP6255 and many others), DRAM configurations and IR remotes, which simplifies my release efforts considerably.

            The Netflix app error you're seeing is due to lack of Widevine L1 support. I can't fix this, as the secure keys are flashed at the factory and they're not sharing.

          Best Beelink GT1 ultimate ROM ever Guest ...everything from 3D to Wi-Fi works great. It's the only ROM I haven't reflashed in about two weeks except when adding the ota, and this made it even better.
          Works great for Kodi 18 Leia alpha too...even supports the ATV recommendations from the kodi library.
          Always looking forward to more ATV feature additions.
          Great work man

          Comment


          • Guest's Avatar
            Guest commented
            Editing a comment
            That's great to hear! And I hadn't tried Kodi 18 alpha builds yet.

          Hello magendanz,
          thank you for your rom your work is great.
          An application for streaming iptv doesn't work it's mycanal.
          i'm french sorry for my bad english.
          you can see my request i can't see my tv
          Thank's

          Comment


            Mycanal bugs on every android TV device, it's not this Rom.

            Comment


              offline link or Only for me?

              Comment


                Sorry for my English Hi everyone, I installed xposed and gravitybox but i can not understand how to put the delete key all in the recent apps you could help me thank you? It seems to me that gravitybox does not work. tillaz87

                Comment


                  Originally posted by tillaz87 View Post

                  Yeah i though this was normal android rom thread, wont work on tv rom
                  wont work with tv

                  Comment


                    Magendanz , very nice work of yours, incredible. Great fan of your work! How would I enter the twrp revovery? Could you please also post a link to get the supersu zip? I need the device (GT1 - qca9377 wifi) rooted!

                    Comment


                    • Guest's Avatar
                      Guest commented
                      Editing a comment
                      Type "reboot recovery" from a Terminal window or hold the reset button during power-up to enter TWRP recovery. As for SuperSu, just type "SuperSu download" in your Google search box.

                    Greetings do any of your roms work on ultimate with sn AX12GSKF80039 and have a bar in the botom and can play Netflix (SD is ok)?
                    [img=http://imagizer.imageshack.com/img537/6746/zABbhG.jpg]

                    Comment


                    • Guest's Avatar
                      Guest commented
                      Editing a comment
                      Yes, all of my latest ROMs (which are based on the Shiningworth All-in-One firmware) should work on that model. And all variants now have the navigation bar as an option that can be configured in Settings->Display->Navigation Bar.

                    Strange i get parsing error on both files i downloaded with your rom Nano & TVstock , gonna try dl without Download manager,
                    [img=http://imagizer.imageshack.com/img537/6746/zABbhG.jpg]

                    Comment

                    Working...
                    X