|
1 | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
| 2 | + xmlns:tools="http://schemas.android.com/tools" |
2 | 3 | package="com.CSoft.ReachUp">
|
3 | 4 | <!-- io.flutter.app.FlutterApplication is an android.app.Application that
|
4 | 5 | calls FlutterMain.startInitialization(this); in its onCreate method.
|
|
11 | 12 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
|
12 | 13 | <uses-permission android:name="android.permission.RECORD_AUDIO"/>
|
13 | 14 | <application
|
14 |
| - android:name="com.CSoft.ReachUp" |
| 15 | + android:name="io.flutter.app.FlutterApplication" |
15 | 16 | android:label="ReachUp"
|
16 |
| - android:icon="@mipmap/ic_launcher"> |
| 17 | + android:icon="@mipmap/ic_launcher" |
| 18 | + android:exported="true" |
| 19 | + tools:node="merge"> |
| 20 | + <receiver android:name="org.altbeacon.beacon.startup.StartupBroadcastReceiver" android:exported="false" |
| 21 | + tools:node="merge"> |
| 22 | + <intent-filter> |
| 23 | + <action android:name="android.intent.action.BOOT_COMPLETED" /> |
| 24 | + <action android:name="android.intent.action.ACTION_POWER_CONNECTED" /> |
| 25 | + <action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" /> |
| 26 | + </intent-filter> |
| 27 | + </receiver> |
17 | 28 | <activity
|
18 | 29 | android:name=".MainActivity"
|
19 | 30 | android:launchMode="singleTop"
|
20 | 31 | android:theme="@style/LaunchTheme"
|
21 | 32 | android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
|
22 | 33 | android:hardwareAccelerated="true"
|
23 |
| - android:windowSoftInputMode="adjustResize"> |
| 34 | + android:windowSoftInputMode="adjustResize" |
| 35 | + android:exported="true" |
| 36 | + tools:node="merge"> |
24 | 37 | <!-- Specifies an Android theme to apply to this Activity as soon as
|
25 | 38 | the Android process has started. This theme is visible to the user
|
26 | 39 | while the Flutter UI initializes. After that, this theme continues
|
|
0 commit comments