Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Google Chrome appears now as a searchable app since its last update (v31).</p> <p>System Application:</p> <p>Have try like this</p> <pre><code>&lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.globalsearch" android:sharedUserId="android.uid.shared"&gt; &lt;uses-permission android:name="android.permission.GLOBAL_SEARCH" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" /&gt; &lt;application android:label="@string/global_search" android:process="android.process.acore"&gt; &lt;activity android:name=".GlobalSearch" android:permission="android.permission.GLOBAL_SEARCH_CONTROL" android:stateNotNeeded="true" android:theme="@android:style/Theme.NoDisplay" android:excludeFromRecents="true"&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.SEARCH" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;/intent-filter&gt; &lt;!-- This must be higher than the default priority (0), which is what GoogleSearch uses. --&gt; &lt;intent-filter android:priority="500"&gt; &lt;action android:name="android.search.action.GLOBAL_SEARCH" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;/intent-filter&gt; &lt;meta-data android:name="android.app.searchable" android:resource="@xml/searchable" /&gt; &lt;/activity&gt; &lt;activity android:name=".SearchSettings" android:label="@string/search_settings"&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;/intent-filter&gt; &lt;intent-filter&gt; &lt;action android:name="android.search.action.SEARCH_SETTINGS" /&gt; &lt;category android:name="android.intent.category.DEFAULT" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;provider android:name=".SuggestionProvider" android:authorities="com.android.globalsearch.SuggestionProvider" android:permission="android.permission.GLOBAL_SEARCH_CONTROL" /&gt; &lt;provider android:name=".StatsProvider" android:authorities="com.android.globalsearch.stats" android:permission="android.permission.GLOBAL_SEARCH_CONTROL" /&gt; &lt;meta-data android:name="android.app.default_searchable" android:value=".GlobalSearch" /&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload