I have made a small application in android and I want to publish it on market.
So first of all how to export final APK from eclipse and
second what are the parameters to set in AndroidManifest file?
Please, help me.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
1) Extracting signed package
A quote from here:
2) Manifest
There are a lot of params in manifest file. The main ones you need is:
Parameters of manifest tag:
is the package name of your project. I assume you already have it.
These two describes the code and name of the version of your software. version code should be always an integer, and version name can be any string you like. Don’t forget to increase your version code, when uploading an update.
Nested tag
<uses-sdk android:minSdkVersion="3" />is a tag, which specifies the minimum api level your application uses.
Nested tags
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>are necessary only if you need some permissions for application.Read more about manifest file here.