I am trying to download an application in the Android Market. Below are the instructions that I use from the following website to prepare an application for sending:
http://android.xamarin.com/Documentation/Guides/Preparing_Package_for_Android_Marketplace
This next message is at the beginning of the instructions. But no instructions on how to add this to the AndroidManifest.xml file.
For the Android market to accept your application, it must define an application level icon. Ensure that such a line exists in your AndroidManifest.xml:
<application android:label="MyApplication" android:icon="@drawable/icon">
In a future release, support for this setting will be improved.
The very first element has a dead end because I get the following error when I try to load an application on the market.
"The icon path specified by the manifest is not in apk.
My question is, how can I add the application level icon operator to the manifest file?
Thanks.
ps The application is deployed both on the emulator and on the local Android device in debug and release modes without errors.
source share