2022-10-15 16:35:35 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-02-10 21:49:51 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-10-15 16:35:35 +00:00
|
|
|
package="com.vodemn.lightmeter">
|
2023-02-10 21:49:51 +00:00
|
|
|
|
|
|
|
<application
|
2022-12-17 18:09:32 +00:00
|
|
|
android:label="Lightmeter"
|
2022-10-15 16:35:35 +00:00
|
|
|
android:name="${applicationName}"
|
2023-03-17 18:43:15 +00:00
|
|
|
android:icon="@mipmap/ic_launcher">
|
2022-10-15 16:35:35 +00:00
|
|
|
<activity
|
|
|
|
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"
|
2022-10-29 18:14:49 +00:00
|
|
|
android:screenOrientation="portrait"
|
2022-10-15 16:35:35 +00:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<!-- 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-02-10 21:49:51 +00:00
|
|
|
android:name="io.flutter.embedding.android.NormalTheme"
|
|
|
|
android:resource="@style/NormalTheme"
|
|
|
|
/>
|
2022-10-15 16:35:35 +00:00
|
|
|
<intent-filter>
|
2023-02-10 21:49:51 +00:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2022-10-15 16:35:35 +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
|
|
|
|
android:name="flutterEmbedding"
|
|
|
|
android:value="2" />
|
|
|
|
</application>
|
2022-11-27 20:22:56 +00:00
|
|
|
|
2023-05-08 15:13:43 +00:00
|
|
|
<queries>
|
|
|
|
<intent>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<data android:scheme="mailto" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent>
|
|
|
|
</queries>
|
|
|
|
|
2022-11-27 20:22:56 +00:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<uses-feature android:name="android.hardware.camera" android:required="true" />
|
2023-02-10 21:49:51 +00:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" tools:node="remove" />
|
|
|
|
<uses-permission android:name="android.permission.MICROPHONE" tools:node="remove" />
|
|
|
|
<uses-feature android:name="android.hardware.microphone" android:required="false" />
|
|
|
|
</manifest>
|