Skip to content

Commit

Permalink
🤖 Android fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Khaoz-Topsy committed Jan 3, 2024
1 parent a7f28d8 commit 6fbdac7
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.kurtlourens.no_mans_sky_recipes">
<application android:label="Assistant for No Man's Sky" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:usesCleartextTraffic="true">
<activity android:exported="true" android:name="io.flutter.embedding.android.FlutterActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.kurtlourens.no_mans_sky_recipes">
<application android:label="Assistant for No Man's Sky" android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round" android:usesCleartextTraffic="true">
<activity android:exported="true"
android:name="io.flutter.embedding.android.FlutterActivity"
android:launchMode="singleTop" android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID" android:value="ca-app-pub-6788092250018822~2121998241" />
<meta-data android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-6788092250018822~2121998241" />
<meta-data android:name="com.google.android.gms.wallet.api.enabled" android:value="true" />
<receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver" />
<receiver android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver">
<receiver
android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationReceiver" />
<receiver android:exported="true"
android:name="com.dexterous.flutterlocalnotifications.ScheduledNotificationBootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED">
</action>
Expand All @@ -19,4 +28,4 @@
<meta-data android:name="flutterEmbedding" android:value="2" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
</manifest>
</manifest>

0 comments on commit 6fbdac7

Please sign in to comment.