Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p><code>ERROR_NOT_MARKET_MANAGED</code>: the name really tells all about itself, application is not managed by Android Market (now called Google Play). More specifically, the version 11 of your application is not uploaded or published in Google Play.</p> <blockquote> <p>should I handle this error or is this an unrealistic scenario?</p> </blockquote> <p>I would consider this as an unrealistic scenario. You don't need to do anything special in code as long as you upload the new app version in Google Play. ERROR_NOT_MARKET_MANAGED is more like a LVL development warning which help developer properly implement license checking code and follow the correct procedure for testing license checking at project build time. check out the comments in LVL sample code:</p> <pre><code>private class MyLicenseCheckerCallback implements LicenseCheckerCallback { ... ... public void applicationError(ApplicationErrorCode errorCode) { if (isFinishing()) { // Don't update UI if Activity is finishing. return; } // This is a polite way of saying the developer made a mistake // while setting up or calling the license checker library. // Please examine the error code and fix the error. //String result = String.format(getString(R.string.application_error), errorCode); //String result = "Error"; //handleLicensingResult(result); } } </code></pre> <p>The whole point of integrating LVL into your application is to use Google Play publish your application, and use Google Play client application download and install your application (see <a href="http://developer.android.com/guide/market/licensing/overview.html#Reqs" rel="noreferrer">Requirements and Limitations</a> section in dev guide). I can't see any point that can cause this applicationError at runtime on end user's device if:</p> <ol> <li>Developer follow the correct procedure to upload (for testing LVL) or publish (for real release) in Google Play. </li> <li>End user use Google Play client application purchase, download and install the application.</li> </ol> <p>If a end user somehow get a copy of your application (with LVL integrated and uploaded/published in Google Play) from other channel (not purchase via Google Play) and trying to install it on his device (with Google Play client application installed on that device), in this case, LicenseCheckerCallback will go to dontAllow() rather than applicationError(ApplicationErrorCode errorCode).</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload