31 lines
1.6 KiB
XML
31 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- This AndroidManifest.xml template was generated by Skip -->
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
|
|
<!-- example permissions for using device location -->
|
|
<!-- <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> -->
|
|
<!-- <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> -->
|
|
|
|
<!-- permissions needed for using the internet or an embedded WebKit browser -->
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<!-- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> -->
|
|
|
|
<application
|
|
android:label="${PRODUCT_NAME}"
|
|
android:name=".AndroidAppMain"
|
|
android:supportsRtl="true"
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true"
|
|
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden|mnc|colorMode|density|fontScale|fontWeightAdjustment|keyboard|layoutDirection|locale|mcc|navigation|smallestScreenSize|touchscreen|uiMode"
|
|
android:theme="@style/Theme.AppCompat.DayNight.NoActionBar"
|
|
android:windowSoftInputMode="adjustResize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|