How can I solve this types of issue from my android device when I update application if any one then not updated application from Google Play store, so what I do? Please tell me and solve this issue.
Share
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.
if I understand you correctly you want to force updates on your users.
this can be achieved in a pretty simple way if your app is connected to your own server for data transfer.
all you have to do is send a key to your sever for authentication (in addition to the user and password or whatever is sent).
the SHA1 function is taken from this answer:
every time you send an update you change the key in the app and in the server and now your users are forced to update.
you should probably add a UI that prompts if the user has an old key and send them to the app in the Google Play site. You can do this with an intent.
(this code was taken from this answer)