Does anyone have Manifest extension by @Atom_Developer

Basicly the website is only source where you can actually get it , but its gone , doe anyone maybe have an aix file?

This was not just an extension, that page generated an extension according to your needs

Taifun

oh alright , so its gone forever for some reson when i try to edit manifest file is like corrupted

I can create one such page.

1 Like

it would be really useful

Done :+1:
https://manifest.sunnythedeveloper.in

You can add activities, services, meta etc.
Make sure to escape double quotes with \ .
For example:

<meta-data android:name=\"com.google.firebase.messaging.default_notification_channel_id\" android:value=\"FCM_360\"/>
5 Likes

alright, could you give some advaice on how to use it?

Why do you think, you have to generate an extension for your project?
What exactly do you think you need, which is not already available as component or extension?

Taifun

never mind i uderstand it now

You can tell that here so we can mark it as solution.


when i add this code for extension

 <queries>
    <intent>
      <action android:name="android.intent.action.MAIN" />
    </intent>
  </queries>

showing me an error

please help me to add this code in my app manifest file

Escape quotes.

<queries><intent><action android:name=\"android.intent.action.MAIN\" /></intent></queries>

Brother I want to add permission in manifest showing error in line 96 when i upload it on builder.
how can we rewrite this

<uses-permission android:name=\"android.permission.CALL_PHONE\" />

Brother this code is added successfully in manifest but this code not working because code added in random place in manifest but i want to add it after all permission like this . first permission then after use code. Thanks Brother

<uses-permission
	android:name="android.permission.ANSWER_PHONE_CALLS"
	>
</uses-permission>
<uses-permission
	android:name="android.permission.CALL_PHONE"
	>
</uses-permission>
<uses-permission
	android:name="android.permission.PACKAGE_USAGE_STATS"
	>
</uses-permission>
<queries>
		<intent>
			<action android:name="android.intent.action.MAIN">
			</action>
		</intent>
	</queries>

Do you have a source which says query should be placed before permissions?

1 Like

Replace by

<action android:name="android.intent.action.MAIN" />

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.