I’m checking new structure for corona native from daily builds. It looks like the manifest is auto generated. But I want to add manually manifest by my self. How can I disable manifest being generated and to get required basic structure for an app?
Generate and then edit src/main/AndroidManifest.xml. It is generated only when is setUpCoronaAppAndPlugins manually started: it will download all plugins and setup the xml according to plugins and build.settings. So you can change it after being generated, and really only reason to run the target is to reflect changes in plugins or build.settings.
Create android library (aar) and put your manifest entries there to be merged as libraries
Create app/src/release/main/AndroidManifest.xml and app/src/debug/AndroidManifest.xml merge manifest.
Generate and then edit src/main/AndroidManifest.xml. It is generated only when is setUpCoronaAppAndPlugins manually started: it will download all plugins and setup the xml according to plugins and build.settings. So you can change it after being generated, and really only reason to run the target is to reflect changes in plugins or build.settings.
Create android library (aar) and put your manifest entries there to be merged as libraries
Create app/src/release/main/AndroidManifest.xml and app/src/debug/AndroidManifest.xml merge manifest.