appFormation
appFormation

Reputation: 253

Android license check using LVL - put your code inside the run() method or elsewhere

I am planning to use the Android License Verification Library (LVL) in my new paid app.

I am using the sample code provided in SDK. Do I need to move my code which is currently inside onCreate() method to this run() method:

private void displayResult(final String result) {
    mHandler.post(new Runnable() {
        public void run() {
            ***// Move code that was in onCreate() here????***
        }
    });
}

Thanks. Your help is greatly appreciated.

Upvotes: 0

Views: 433

Answers (1)

Related Questions