http://developer.android.com/google/play/licensing/adding-licensing.html#account-key
Some parts of the link will solve your question. Insert your public key for licensing.
For each application, the Google Play service automatically generates a 2048-bit pair of RSA public and private keys, which is used for licensing and billing in the application. A key pair is uniquely associated with the application. Although this is related to the application, the key pair does not match the key that you use to sign your applications (or derived from it).
The Google Play Developer Console provides a public key for licensing to any developer signed into the Developer Console, but it hides the private key from all users in a safe place. When an application requests a license check for an application published to your account, the licensing server signs a license response using the private key of your application key pair. When LVL receives a response, it uses the public key provided by the application to verify the signature of the license response.
To add a license to the application, you must obtain the public key of your application for licensing and copy it to your application. Here's how to find the public key of your licensing application:
Go to the Google Play Developer Console and sign in. Make sure you are logged in to the account from which the application you are licensing is published (or will be published). On the application details page, find the Services and APIs link and click on it. On the Services and API page, find the Licensing and App-Based Billing sections. Your public key for licensing is listed in the "License key for this application" field. To add a public key to your application, simply copy / paste the key string from the field into your application as the value of the String variable BASE64_PUBLIC_KEY. When you copy, make sure you select the entire key string without omitting any characters.
Here is an example from an application for LVL selection:
public class MainActivity extends Activity { private static final String BASE64_PUBLIC_KEY = "MIIBIjANBgkqhkiG ... ";
traihien
source share