How to handle updating the app on users devices - android

So after you first deploy your apk to Google Play and it's all up and running, how do you handle updating your app for your users?
Do you have to do the same process every time
manually change the version number in the manifest
export and then upload apk to google play console
Or is there a faster way?

There is no faster way but only one way(till now). Its the way you mentioned in your question:
manually change the version number in the manifest export
upload apk to google play console
After this, update process is complete from your part. The rest of the work like showing updates to users and allowing update is handled by play store.

Related

Automate play store release with Managed publishing - Google Play API

I want to deploy and publish multiple at the same time. Currently I'm using https://www.npmjs.com/package/deploy-aab-google-play npm library to push bundle files. It is working well doing the job for me.
But, I have a new requirement. I need to get all apps approved before going live. Play stores "Managed Publishing" is very good option to do so, but it is not possible to publish every app manually from play console dashboard like shown in below image. I need to deploy more than 30 apps (increasing day by day) at once.
Play store Managed publishing
Can we get app status through API call or any npm library which return is app approved and ready to publish and if so make app through API call or any npm library only.
Any tools such as deploy-aab-google-play which i use to push aab files.
Thank you in advance for your suggestions.

No automatic update of my launcher app

I make an Android launcher app and I published this app in the store.
The problem is it seem the people don't receive the update of the app automatically...
They have to go to the store and click to the update button.
It's the same when Sync is enabled in settings & background Data is not restricted.
Maybe because it's a launcher and the Google Play Store doesn't update the app who are being used (to not reload it) ?
Google Play can take upto 24 hours to push application updates across all its servers.
Just wait for a while, and all your eligible users should receive the update. However, if your update adds feature requests that some devices don't support, they will not get the update. And one more thing you must make sure that the app u have installed in ur mobile is not apk built with debug keystore.. the play store will show always as "Open" button instead of "Update" if the play store app certificate doesn't match with installed app certificate. I realized this when i did trial and error with debug and signed apk's. Only signed apk worked. And use versionCode for comparing versions instead of version Name.

New version of android app

I have a native android app in google play and now I have made a new version of the app with ionic 2 framework.
How to update the app and is it possible to notify the users about the new version of the app?
I quess I have to remove the old one and upload the new one.
This is exactly what you need:
https://support.google.com/googleplay/android-developer/answer/7159011
Because you completely rewrote your app please read this too, the most important part is "Prepare your APK":
https://support.google.com/googleplay/android-developer/answer/113476?hl=en
If you follow these guides existing users will be notified about new version automatically by Google Play Store.
The existing users can download the update from your app listing page on the play store or when they select My apps on the Play store. Also if they have enabled auto update for your app then the update will be downloaded and installed automatically.
More about this here.
and as #Abhishek recommended, if you don't have any code for checking updates in your previous version of app then users will not get notified automatically.
also you don't have to remove the old app to upload the new one, you can deactivate the old app if you want it to no longer served to the user, OR you can retain it if you still want it to be served to the users.
Google play usually updates applications automatically. You just need to add upload APK and click Release. You don't have to remove old APK.
In less than a day or something all users of your application will be notified by Google Play that new version is available and if user configures his phone to install apps automatically, then apk will be installed in background as soon as update will be ready.
Also you can notify your users about new version using PUSH notifications. Of course if your previous release does not contain code to enable PUSHes, then you cannot send such notification.
And one more thing: if you use your previous keys to sign APK then everything is fine and you don't need to do anything with APK at developer console, otherwise you need to rollback application and/or re-publish it.

How to update app with Google Play and force download

I'm using android studio. I have developed an app and now I want to upload it to Google Play. I have a license and I have uploaded an app before, but I didn't really know what I was doing at that time.
What I want is to upload my app to Google Play, and then upade it without losing the reviews and rating. How do I do that?
And, what is the best way to force a user to download an update? I am going to upload the app to Google Play and to Amazon Appstore (for android), so a link to Google Play or something similar is maybe not the best solution. I was thinking - a toast message "please update the app". What do you think?
Updating an existing apk on Google Play Store:
1) Go to your Google Play Developer Console
2) Select All applications in that select "Your Application"
3) Select Upload APK.
4) Choose from the Production, Beta, or Alpha channels and select Upload your APK.
It take few hours to publish update. more information about upload, publish, etc.
Forcing users to update: There are three things
1) It is not possible in Google Play Store, unless user have set automatic update on.
2) You can use external library like UpdateChecker, AppUpdater, etc.
3) You can change your application structure in that way that whenever user starts you application internal contents get update. (This is not a feasible option, I guess)
What is KeyStore?
It is used to build singed apk.
Keep your keystore in a secure location. If you lose your keystore, you'll need to publish the app with a new package name and a new key. If you need to do this, you should also unpublish the original app and update its description
Please check out this library, actually it provides what you want with simple approach.
https://android-arsenal.com/details/1/3094
When you publish a new version of your app to the Play Store, you will not lose any of the prior ratings for that app.
You can't force users to update your app. It is fully under their control. Some people may have automatic updates turned on, but for those who do not, they have to choose to receive the update.
Google added this new feature you can add to your app to force in-app update based on if you want the update immediate or flexible
https://developer.android.com/guide/playcore/in-app-updates/kotlin-java

Android APK Auto Update

I would like to know if this is possible.
Our users download & install APK from Play market the first time,
and afterward while the application detected that a new version is available, it can auto download & install new APK (using the same signature as original one) from our custom server, even if the allow side-loading setting is unchecked in user's device?
Or we must upload the new update APK on Play market again, and let user manually download & install from market?
thanks.
Use the Google Play Store update mechanism. It's the one and only way to deploy updates.
Some time ago Facebook also tried to implement their own update mechanism for their app and the result was Google temporary removing the app from the Play Store because of that.
If the user has installed the app from Play Store then the updates must come from Play Store only. Otherwise there would be signature mismatch problem.
You need to change the "version code" and "version name" and upload new APKs to the Play Store again.
And user's do not need to manually download updates if they have "automatic updates" enabled.
UPDATE
I saw your last comment and just thought to help.
We want to ensure our user always running the latest version of
application.
Yes, I can understand this requirement. The users who have "automatic updates" enabled (most of the users have) will automatically get the latest version of your app.
And those who don't, will get a notification to choose if they want to update now or postpone it later (may be they don't have enough internet data or time to download app app updates now).
The Trick
I can give you a trick. You can use your custom server to check if the user is currently using the latest version of the app or not. So if any user who is using the outdated version opens your app, the app checks to see that from the server and then prompts the user to update the app immediately. You can also take the user directly to the Play Store to update the app. Simple, isn't it?
Hope it helps.
You have to upload the APK to the Play Store again. Depending no the user's settings he will auto-update the app or manually download the update from the store.

Categories

Resources