We are trying to deploy our first monodroid app to the store. I have made sure that the 'application' tag in the manifest has the label and icon set on it.
All, my activities have 'label' attribute set on them. We have added the 'keystore' specific property tags to the .csproj file. Here is the manifest file. I am not sure why we are getting the 'android:name' issue since monodroid by default sets up the name on each activity. <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="pocketmono.pocketapplication" android:installLocation="internalOnly" android:versionCode="1" android:versionName="1.0.0"> <application android:label="Pocket Test" android:icon="@drawable/Icon"> </application> <uses-sdk android:minSdkVersion="4" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.CALL_PHONE" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> </manifest> Any pointers/hints/help would be appreciated. Is there a way to see the final AndroidManifest.xml? -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/Deployment-to-app-store-giving-ERROR-getting-android-name-attribute-tp5042841p5042841.html Sent from the Mono for Android mailing list archive at Nabble.com. _______________________________________________ Monodroid mailing list [email protected] UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid
