| Index: chrome/android/java/AndroidManifest.xml
|
| diff --git a/chrome/android/java/AndroidManifest.xml b/chrome/android/java/AndroidManifest.xml
|
| index 3e11243e0940037e35be2aec887acb8134e28635..5a09c871f1c19df0151430c07b22bb0c7b680078 100644
|
| --- a/chrome/android/java/AndroidManifest.xml
|
| +++ b/chrome/android/java/AndroidManifest.xml
|
| @@ -634,6 +634,23 @@ by a child template that "extends" this file.
|
| android:exported="false" >
|
| </activity>
|
|
|
| + <!-- This activity is to expose the PhysicalWeb Share option via the generic Android share action. -->
|
| + <activity
|
| + android:name="org.chromium.chrome.browser.physicalweb.PhysicalWebShareActivity"
|
| + android:icon="@drawable/physical_web_notification_large"
|
| + android:label="@string/physical_web_share_activity_title"
|
| + android:enabled="false"
|
| + android:excludeFromRecents="true"
|
| + android:noHistory="true"
|
| + android:theme="@android:style/Theme.NoDisplay"
|
| + android:configChanges="orientation|keyboardHidden|keyboard|screenSize|mcc|mnc|screenLayout|smallestScreenSize" >
|
| + <intent-filter>
|
| + <action android:name="android.intent.action.SEND" />
|
| + <category android:name="android.intent.category.DEFAULT" />
|
| + <data android:mimeType="text/plain" />
|
| + </intent-filter>
|
| + </activity>
|
| +
|
| <!-- Service for handling Nearby Messages -->
|
| <service android:name="org.chromium.chrome.browser.physicalweb.NearbyMessageIntentService"
|
| android:exported="false" />
|
|
|