pwabuilder-android
Version:
PWA Builder Android Platform
22 lines (19 loc) • 939 B
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="microsoft.com.pwa">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:label="@string/app_name"
android:allowBackup="true"
android:supportsRtl="true"
android:icon="@mipmap/ic_launcher"
android:theme="@style/SplashTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>