AndroidManifest.xml (863B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 <manifest xmlns:android="http://schemas.android.com/apk/res/android"> 5 6 <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> 7 <uses-permission 8 android:name="com.android.launcher.permission.INSTALL_SHORTCUT" 9 android:maxSdkVersion="26" /> 10 11 <application> 12 13 <activity android:name=".WebAppLauncherActivity" 14 android:theme="@style/Theme.AppCompat.Translucent" 15 android:exported="true"> 16 <intent-filter> 17 <action android:name="mozilla.components.feature.pwa.PWA_LAUNCHER" /> 18 </intent-filter> 19 </activity> 20 </application> 21 22 </manifest>