Update android config

This commit is contained in:
Juan Gilsanz Polo
2024-02-22 14:10:59 +01:00
parent be7a2bcf4b
commit efa0c587b8
4 changed files with 37 additions and 20 deletions

View File

@@ -1,6 +1,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.jgeek00.my_linkding">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:label="my_linkding"
android:label="My Linkding"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
@@ -16,12 +18,12 @@
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
@@ -30,4 +32,4 @@
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>
</manifest>

View File

@@ -1,4 +1,4 @@
package com.example.my_linkding
package com.jgeek00.my_linkding
import io.flutter.embedding.android.FlutterActivity