Regex Rookie
Regex Rookie

Reputation: 10662

How to test application without activating it?

OK, so I exported a signed release APK, "locked" with Google's LVL API but before activating it on Google Play to be visible to and downloadable by all, I want to test it first on my device.

The problem is when I just adb install -r that signed release APK, the licensing server returns NOT_LICENSED and I cannot test the locked features.

What is the proper way to test an application locked with Google's LVL without activating it first?

Upvotes: 0

Views: 1358

Answers (1)

yorkw
yorkw

Reputation: 41126

I remember I had similiar problem before, when google rename Android Market to Google Play. It seems that Google Play is stuck with the old LVL cached data.

Try clearing app data under Settings -> Applications -> Manage Applications -> Google Play on your device.

Upvotes: 2

Related Questions