Debopam Mitra
Debopam Mitra

Reputation: 1870

Android App Publishing and Update?

I will be publishing my app in couple of weeks but before that, I need to know something which I think might me important. To my knowledge the only way to publish the .apk file of my app is through Google Play. Am I right? If wrong please correct me. What else do I need in order to publish my app? Is there anything about license or something more important that I should keep in my mind?

Second thing I need to know is about update. After I have published my app at the Play, what if I need to release an update? To provide an update in future do I need to add something in my code or something in the manifest now at this moment of my development process? What are the important points should I keep in mind now so that I could provide an update later.

Upvotes: 0

Views: 283

Answers (3)

easycheese
easycheese

Reputation: 5899

I had the same issue. Be sure to ACTIVATE the APK on the APK Files tab.

Upvotes: 0

berwyn
berwyn

Reputation: 986

There are other places you can publish your apps in addition to or instead of the Google Play Store, for example the Amazon App Store.

In regards to what else you need besides your APK, you need at least two screenshots of your app running, a large version of your app's icon and a pre-made privacy policy hosted somewhere on the web. There are other optional things that you should include, but don't need to (like a feature graphic, or a promo video).

Updating is much simpler. If you ever need to publish an update, simply change android:versionName & increment android:versionCode in your manifest and then you can just upload a new APK signed with the same key as your original to your app listing in the developer console and Google Play will automatically host the new version and notify users that have installed your app that an update is available.

Most of questions can be answered by visiting the developer console here:

https://play.google.com/apps/publish/

or the Android Developers Google Play guide:

http://developer.android.com/distribute/index.html

Upvotes: 1

SquiresSquire
SquiresSquire

Reputation: 2414

if you have used external library's check the license that came with them as to what you need for them. Updates are simply when you add new features to the code when releasing update you change version number in the manifest

Upvotes: 0

Related Questions