Settings Hooks launch wrong activity

The Operator and Manufacturer Hooks are broken, when
clicked they will launch WirelessSettings instead of
the activity intended to be launched.

The hook tile specifies a fragment which will be launched
when clicked. By removing this the tile will work as
intended.

Change-Id: I42d53698340cda676f4bab71857cc049d007803c
This commit is contained in:
Henrik Baard
2016-01-15 08:40:49 +01:00
parent 574814a4c2
commit 3436f3a88e

View File

@@ -57,8 +57,7 @@
<!-- Operator hook -->
<dashboard-tile
android:id="@+id/operator_settings"
android:fragment="com.android.settings.WirelessSettings" >
android:id="@+id/operator_settings" >
<intent android:action="com.android.settings.OPERATOR_APPLICATION_SETTING" />
</dashboard-tile>
@@ -152,8 +151,7 @@
<!-- Manufacturer hook -->
<dashboard-tile
android:id="@+id/manufacturer_settings"
android:fragment="com.android.settings.WirelessSettings">
android:id="@+id/manufacturer_settings" >
<intent android:action="com.android.settings.MANUFACTURER_APPLICATION_SETTING" />
</dashboard-tile>