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
diff --git a/res/xml/dashboard_categories.xml b/res/xml/dashboard_categories.xml
index d437dcf..bb5393a 100644
--- a/res/xml/dashboard_categories.xml
+++ b/res/xml/dashboard_categories.xml
@@ -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>