Remove ACTION_VOICE_SEARCH_SETTINGS (added only for Froyo), because we've got
a more robust solution instead.
diff --git a/api/current.xml b/api/current.xml
index ac3f760..3dbac12 100644
--- a/api/current.xml
+++ b/api/current.xml
@@ -137325,17 +137325,6 @@
  visibility="public"
 >
 </field>
-<field name="ACTION_VOICE_SEARCH_SETTINGS"
- type="java.lang.String"
- transient="false"
- volatile="false"
- value="&quot;android.speech.action.VOICE_SEARCH_SETTINGS&quot;"
- static="true"
- final="true"
- deprecated="not deprecated"
- visibility="public"
->
-</field>
 <field name="ACTION_WEB_SEARCH"
  type="java.lang.String"
  transient="false"
diff --git a/core/java/android/speech/RecognizerIntent.java b/core/java/android/speech/RecognizerIntent.java
index 241a8b0..5f651e1 100644
--- a/core/java/android/speech/RecognizerIntent.java
+++ b/core/java/android/speech/RecognizerIntent.java
@@ -208,10 +208,4 @@
      * an activity result. In a PendingIntent, the lack of this extra indicates failure.
      */
     public static final String EXTRA_RESULTS = "android.speech.extra.RESULTS";
-    
-    /**
-     * Triggers the voice search settings activity.
-     */
-    public static final String ACTION_VOICE_SEARCH_SETTINGS =
-            "android.speech.action.VOICE_SEARCH_SETTINGS";
 }