Limit application access in google play

0

Is it possible to create some criteria that make it impossible to update my application in the published google play?

Current scenario:

  • I have an Android sales force system and a Desktop ERP that exchange information.

It turns out that to have this communication, the versions should be updated according to the message exchange layout. And for this reason, I can not allow the android application to upgrade to a newer version without first upgrading the Desktop.

    
asked by anonymous 07.10.2014 / 02:10

1 answer

1

The most correct in this case is you put in Play an application that manages the versions of your mobile system.

You make this guy available in Play and when the user downloads it, this application will check if the user can upgrade to the newer version of your system.

Of course, these apks on your system must be on a private server (your own server).

So, the application that is in Play, version manager, is who will check on your server if there are updates, but will only let you install if the version of ERP of the user using the mobile version agrees.

In the latter case, there must be a way for the manager to also be able to validate this version of ERP, depending on the user.

But there, at the first installation, it could enter the connection data for the company server, for example.

    
10.10.2014 / 15:29