I need a simple statement with an "if condition" that does this: "if you didn't download from market then finish()". If I understood well there are two types of control: I need that the control is done strictly everytime connecting to the Android market server, storing data nowhere in the phone for further offline checks. Thanks, as usual, to the Stack citizens!
LVL - A statement for: "if you didn't download from market then finish()"
369 Views Asked by Geltrude At
2
There are 2 best solutions below
0

In addition to what David suggested, you could also watch for the ERROR_NOT_MARKET_MANAGED
response code.
ERROR_NOT_MARKET_MANAGED
— the application (package name) was not recognized by Android Market. Do not retry the license check. Can indicate that the application was not published through Android Market or that there is an development error in the licensing implementation.
Also, David makes a good point. Apps are guaranteed to fail communicating with the licensing server from time to time. This could drive your users mad.
You should implement licensing as per the Application Licensing Dev Guide and use the StrictPolicy detailed under policies.
StrictPolicy does not allow the caching of responses and I would think carefully about whether it is a good idea to demand that your users are online to use your application.