Here\'s my debug\\AndroidManifest.xml
Getting so many errors like
Element action is not allowed here.
Element category
AndroidManifest.xml:15: error: unknown element found.
You have a misplaced tag.
To improve incremental resource processing, Android plugin 3.0.0 enables AAPT2 by default. In previous versions of AAPT, elements nested in incorrect nodes in the Android manifest are either ignored or result in a warning.
To resolve the issue, make sure your manifest elements are nested correctly. For more information, read Manifest file structure.
You have to modify your Manifest:
They should be included inside an tag.
You can read more here.