2016-08-01, 15:01
I've been testing Krypton Alphas and Estuary on the nVidia Shield and I noticed a couple of Android related bugs.
In the addon browser Android apps use the wrong label "Program add-ons" and the widget with all the apps does not appear.
When I click the button with the Android icon it opens a sub menu with Android apps and Program add-ons instead of going straight into Android apps.
Here are some pictures to clarify the situation:
http://imgur.com/a/Zv0Ko
I fixed the problems by editing the file Custom_1100_AddonLauncher.xml
Original
Fix
In the addon browser Android apps use the wrong label "Program add-ons" and the widget with all the apps does not appear.
When I click the button with the Android icon it opens a sub menu with Android apps and Program add-ons instead of going straight into Android apps.
Here are some pictures to clarify the situation:
http://imgur.com/a/Zv0Ko
I fixed the problems by editing the file Custom_1100_AddonLauncher.xml
Original
Code:
<item id="4">
<label>$LOCALIZE[1043]</label>
<onclick>ActivateWindow(programs,androidapps://,return)</onclick>
<thumb>icons/settings/android.png</thumb>
<property name="id">android</property>
<property name="path">androidapps://</property>
<visible>System.Platform.Android</visible>
</item>
<include content="AddonLauncherPanel" condition="System.Platform.Android">
<param name="container_id" value="506" />
<param name="visible" value="Container(9000).HasFocus(4)" />
<param name="container_path" value="androidapps://" />
<param name="container_target" value="programs" />
</include>
Fix
Code:
<item id="4">
<label>$LOCALIZE[20244]</label>
<onclick>ActivateWindow(programs,androidapp://sources/apps/,return)</onclick>
<thumb>icons/settings/android.png</thumb>
<property name="id">android</property>
<property name="path">androidapp://sources/apps/</property>
<visible>System.Platform.Android</visible>
</item>
<include content="AddonLauncherPanel" condition="System.Platform.Android">
<param name="container_id" value="506" />
<param name="visible" value="Container(9000).HasFocus(4)" />
<param name="container_path" value="androidapp://sources/apps/" />
<param name="container_target" value="programs" />
</include>