AndroidManifest.xml does not declare a Java package: Build aborted.
in
Android Processing
•
22 days ago
Hi All: I am trying to create a signed package to post to Google Play. My application runs fine in Processing; both in the emulator and on my device (a Nexus-7).
I used "Export Android Project", and a directory (Android) and an xml file (AndroidManifest.xml) were created
In Eclipse, I created a new android project from existing code, and gave as the root directory the processing directory that contained the processing code, the icons, and the directory Android as well as AndroidManifest.xml
Eclipse gave the following error message:
AndroidManifest.xml does not declare a Java package: Build aborted.
Eclipse also gave me a popup error message saying could not create project as it was already created;
Here are the contents of AndroidManifest:
<manifest xmlns:android="
http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package=""><uses-sdk android:minSdkVersion="10"/><application android:debuggable="true" android:icon="@drawable/icon" android:label=""><activity android:name=""><intent-filter><action android:name="android.intent.action.MAIN"/><category android:name="android.intent.category.LAUNCHER"/></intent-filter></activity></application><uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/></manifest>
does the above suggest anything to anyone (other than I don't know what I'm doing?)
Thanks in advance
1