Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find androidManifest flutter

This might be a very stupid question, but where do i find the AndroidManifest.xml?

I'm using IntelliJ and I'm trying to add a Google-map to my Flutter project.

I have read

https://stuff.mit.edu/afs/sipb/project/android/docs/guide/topics/manifest/manifest-intro.html

https://developer.android.com/guide/topics/manifest/manifest-intro

https://developer.android.com/guide/topics/manifest/manifest-intro#package-name

and more...

As I understand it, I should find something like this:

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android"     package="com.example.myapp"     android:versionCode="1"     android:versionName="1.0" >     ... </manifest> 

But I only find this:

<?xml version="1.0" encoding="UTF-8"?> <module type="JAVA_MODULE" version="4">   <component name="FacetManager">     <facet type="android" name="Android">       <configuration> 

I'm really sorry if the question is stupid, but it's a problem for me

Thanks

like image 643
J.W Avatar asked May 08 '19 12:05

J.W


People also ask

Where can I find AndroidManifest XML file in flutter?

Android app manifest file, AndroidManifest. xml is located in <app dir>/android/app/src/main.

Where is AndroidManifest located?

When you build an Android app by using Quantum Visualizer, an AndroidManifest. xml file is created in the app's corresponding dist folder. The file is located at WorkspaceName>/temp/<AppName>/build/luaandroid/dist.

How do I get AndroidManifest xml?

Open your Android project and go to <AppProjectFolder>/app/src/main/. Open the app manifest file AndroidManifest. xml and add the following lines to the file as child elements of the <manifest> element. Note: You must include the QUERY_ALL_PACKAGES permission if your app targets Android 11 (API Level 30) or higher.

How do I find the manifest file?

You can tell Visual Studio to generate a manifest file for a particular project in the project's Property Pages dialog. Under Configuration Properties, select Linker > Manifest File > Generate Manifest. By default, the project properties of new projects are set to generate a manifest file.


2 Answers

You can find like this.

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

like image 147
Siloé Bezerra Bispo Avatar answered Oct 19 '22 20:10

Siloé Bezerra Bispo


Look in:

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

like image 33
Richard Heap Avatar answered Oct 19 '22 19:10

Richard Heap