mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-15 18:12:54 +00:00
40 lines
1.5 KiB
XML
40 lines
1.5 KiB
XML
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="org.mozilla.fenix">
|
|
|
|
<application>
|
|
|
|
<activity android:name=".autofill.AutofillUnlockActivity"
|
|
android:exported="false"
|
|
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
|
|
|
<activity android:name=".autofill.AutofillConfirmActivity"
|
|
android:exported="false"
|
|
android:theme="@style/Theme.AppCompat.Translucent" />
|
|
|
|
<activity android:name=".autofill.AutofillSearchActivity"
|
|
android:exported="false" />
|
|
|
|
<service
|
|
android:name=".autofill.AutofillService"
|
|
android:label="@string/app_name"
|
|
android:permission="android.permission.BIND_AUTOFILL_SERVICE">
|
|
<intent-filter>
|
|
<action android:name="android.service.autofill.AutofillService"/>
|
|
</intent-filter>
|
|
</service>
|
|
|
|
|
|
<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>
|