relatica/android/app/src/main/AndroidManifest.xml

43 wiersze
2.0 KiB
XML
Czysty Zwykły widok Historia

2022-11-03 03:25:29 +00:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2023-01-20 03:37:00 +00:00
package="social.myportal.relatica">
2023-01-05 19:10:25 +00:00
<application
2023-01-20 03:37:00 +00:00
android:label="relatica"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
2022-11-03 03:25:29 +00:00
<activity
2023-01-20 03:37:00 +00:00
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
2022-11-03 03:25:29 +00:00
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
2023-01-20 03:37:00 +00:00
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"/>
2022-11-03 03:25:29 +00:00
<intent-filter>
2023-01-20 03:37:00 +00:00
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
2022-11-03 03:25:29 +00:00
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
2023-01-20 03:37:00 +00:00
android:name="flutterEmbedding"
android:value="2"/>
2022-11-03 03:25:29 +00:00
</application>
2023-01-05 19:10:25 +00:00
<queries>
<intent>
2023-01-20 03:37:00 +00:00
<action android:name="android.intent.action.VIEW"/>
<data android:scheme="https"/>
2023-01-05 19:10:25 +00:00
</intent>
</queries>
<uses-permission android:name="android.permission.INTERNET"/>
2023-01-20 03:37:00 +00:00
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
2022-11-03 03:25:29 +00:00
</manifest>