We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi, I am trying the beta release of the Android mode and want to highlight this error when exporting a project containing the Cardboard module. Since there are three modules generated by the Android Studio converter when importing the project, it needs to merge manifests, and thus it needs one single android:label and android:icon .
After conversion, I had to change the tag to
<application
android:debuggable="true"
android:icon="@drawable/icon"
android:label="Cube"
tools:replace="android:icon, android:label">
and of course, to do so, I also changed the manifest tag to:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="processing.test.cube"
android:versionCode="1"
android:versionName="1.0">
But this could be generated automatically when exporting Android projects in Processing, couldn't it?
Cheers. Yohan.