Android Dev Lecture17
Android Dev Lecture17
Development
Android Application Development
Lecture 17
Outline
Chapter 12: Publishing Android
Applications
Preparing for Publishing
Deploying APK Files
1
2
Publishing Android Applications
Objectives
How to prepare your application for
deployment
Exporting your application as an APK file and
signing it with a new certificate
How to distribute your Android application
Publishing your application on the Android
Market
Publishing Steps
The steps to publishing your Android
application:
1. Export your application as an APK
(Android Package) file.
2. Generate your own self-signed certificate
and digitally sign your application with it.
3. Deploy the signed application.
4. Use the Android Market for hosting and
selling your application.
Application Attributes
If you are planning to publish your application on the
Android Market, the AndroidManifest.xml file must have
the following attributes:
Digital Signing
All Android applications must be digitally
signed before they are allowed to be deployed
onto a device.
Eclipse uses a default debug keystore
(appropriately named debug.keystore) to
sign your application.
A keystore is commonly known as a digital
certificate.
Keystore
Questions?