|
1 | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2 |
| - package="com.fluttercandies.wechat_camera_picker_demo"> |
| 2 | + package="com.fluttercandies.wechatCameraPickerExample"> |
3 | 3 |
|
4 | 4 | <uses-permission android:name="android.permission.INTERNET" />
|
5 | 5 | <uses-permission android:name="android.permission.FLASHLIGHT" />
|
6 |
| - <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 6 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="29" /> |
7 | 7 |
|
8 | 8 | <uses-feature
|
9 | 9 | android:name="android.hardware.camera"
|
10 | 10 | android:required="true"/>
|
11 | 11 |
|
12 | 12 | <application
|
13 |
| - android:label="wechat_camera_picker_demo" |
| 13 | + android:label="Wechat Camera Picker Example" |
14 | 14 | android:icon="@mipmap/ic_launcher"
|
15 | 15 | android:requestLegacyExternalStorage="true"
|
16 | 16 | android:allowBackup="false">
|
|
22 | 22 | android:hardwareAccelerated="true"
|
23 | 23 | android:windowSoftInputMode="adjustResize"
|
24 | 24 | android:exported="true">
|
| 25 | + <intent-filter> |
| 26 | + <action android:name="android.intent.action.MAIN"/> |
| 27 | + <category android:name="android.intent.category.LAUNCHER"/> |
| 28 | + </intent-filter> |
25 | 29 | <!-- Specifies an Android theme to apply to this Activity as soon as
|
26 | 30 | the Android process has started. This theme is visible to the user
|
27 | 31 | while the Flutter UI initializes. After that, this theme continues
|
28 | 32 | to determine the Window background behind the Flutter UI. -->
|
29 | 33 | <meta-data
|
30 |
| - android:name="io.flutter.embedding.android.NormalTheme" |
31 |
| - android:resource="@style/NormalTheme" |
32 |
| - /> |
33 |
| - <!-- Displays an Android View that continues showing the launch screen |
34 |
| - Drawable until Flutter paints its first frame, then this splash |
35 |
| - screen fades out. A splash screen is useful to avoid any visual |
36 |
| - gap between the end of Android's launch screen and the painting of |
37 |
| - Flutter's first frame. --> |
38 |
| - <meta-data |
39 |
| - android:name="io.flutter.embedding.android.SplashScreenDrawable" |
40 |
| - android:resource="@drawable/launch_background" |
41 |
| - /> |
42 |
| - <intent-filter> |
43 |
| - <action android:name="android.intent.action.MAIN"/> |
44 |
| - <category android:name="android.intent.category.LAUNCHER"/> |
45 |
| - </intent-filter> |
| 34 | + android:name="io.flutter.embedding.android.NormalTheme" |
| 35 | + android:resource="@style/NormalTheme" /> |
46 | 36 | </activity>
|
47 | 37 | <!-- Don't delete the meta-data below.
|
48 | 38 | This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
|
0 commit comments