Skip to content

Commit 8b93a8b

Browse files
Merge pull request #98 from ChandruWritesCode/97-bug-to-fix-androidmanifestxml
fixed the issue in the AndroidManifest.xml
2 parents cc6aa7f + c7ef525 commit 8b93a8b

16 files changed

Lines changed: 133 additions & 4 deletions

mobile/android/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ configurations.all {
1313
exclude(group = "com.google.android.play", module = "split-install")
1414
}
1515

16-
configure<com.android.build.api.dsl.ApplicationExtension> {
16+
android {
1717
namespace = "in.commandlinecoding.elephant"
1818
compileSdk = flutter.compileSdkVersion
1919
ndkVersion = flutter.ndkVersion

mobile/android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
55

66
<application
7-
android:label="@string/appName"
8-
android:name="${applicationName}"
7+
android:label="Elephant" android:name="${applicationName}"
98
android:icon="@mipmap/ic_launcher"
109
android:usesCleartextTraffic="true">
1110

1211
<activity
13-
android:name=".MainActivity"
12+
android:name="com.example.elephant_frontend.MainActivity"
1413
android:exported="true"
1514
android:launchMode="singleTop"
1615
android:taskAffinity=""
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
C:/Users/Chandragouda M K/AppData/Local/Pub/Cache/hosted/pub.dev/file_selector_linux-0.9.4/
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
C:/Users/Chandragouda M K/AppData/Local/Pub/Cache/hosted/pub.dev/flutter_secure_storage_linux-3.0.1/
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
C:/Users/Chandragouda M K/AppData/Local/Pub/Cache/hosted/pub.dev/image_picker_linux-0.2.2/
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
C:/Users/Chandragouda M K/AppData/Local/Pub/Cache/hosted/pub.dev/jni-1.0.0/
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
C:/Users/Chandragouda M K/AppData/Local/Pub/Cache/hosted/pub.dev/path_provider_linux-2.2.2/
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
C:/Users/Chandragouda M K/AppData/Local/Pub/Cache/hosted/pub.dev/shared_preferences_linux-2.4.1/
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
C:/Users/Chandragouda M K/AppData/Local/Pub/Cache/hosted/pub.dev/url_launcher_linux-3.2.2/
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
//
2+
// Generated file. Do not edit.
3+
//
4+
5+
// clang-format off
6+
7+
#include "generated_plugin_registrant.h"
8+
9+
#include <file_selector_linux/file_selector_plugin.h>
10+
#include <flutter_secure_storage_linux/flutter_secure_storage_linux_plugin.h>
11+
#include <url_launcher_linux/url_launcher_plugin.h>
12+
13+
void fl_register_plugins(FlPluginRegistry* registry) {
14+
g_autoptr(FlPluginRegistrar) file_selector_linux_registrar =
15+
fl_plugin_registry_get_registrar_for_plugin(registry, "FileSelectorPlugin");
16+
file_selector_plugin_register_with_registrar(file_selector_linux_registrar);
17+
g_autoptr(FlPluginRegistrar) flutter_secure_storage_linux_registrar =
18+
fl_plugin_registry_get_registrar_for_plugin(registry, "FlutterSecureStorageLinuxPlugin");
19+
flutter_secure_storage_linux_plugin_register_with_registrar(flutter_secure_storage_linux_registrar);
20+
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
21+
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
22+
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
23+
}

0 commit comments

Comments
 (0)