mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-09 19:10:42 +00:00
c93a29f89a
Co-authored-by: Johan Lorenzo <jlorenzo@mozilla.com>
19 lines
684 B
XML
19 lines
684 B
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="org.mozilla.fenix">
|
|
|
|
<application>
|
|
|
|
<service android:name=".customtabs.CustomTabsService">
|
|
<!-- Trusted Web Activities are currently only supported in nightly. -->
|
|
<intent-filter tools:node="removeAll" />
|
|
<intent-filter>
|
|
<action android:name="android.support.customtabs.action.CustomTabsService" />
|
|
<category android:name="androidx.browser.trusted.category.TrustedWebActivities" />
|
|
</intent-filter>
|
|
</service>
|
|
|
|
</application>
|
|
|
|
</manifest>
|