im\'triyng to implement the Google Licensing Verification in a Android Studio made app. By following this lines: http://developer.android.com/google/play/licensing/setting-up.ht
Finally I've got the solution!
You have to put the library/src/com
directories in the youroject/scr/main/java/com
and then click on the "Sync project with Gradle files" button.
Copying the LVL sources to your application. As an alternative to adding the LVL as a library project, you can copy the library sources directly into your application. To do so, copy (or import) the LVL's library/src/com directory into your application's src/ directory. Visit:http://developer.android.com/google/play/licensing/setting-up.html
step 6 is placed in
inside the project(":android"){dependencies {
section.
Desktop/android-sdk-macosx/extras/google/play_licensing/library
lvl
module's build.gradle
to match your project targetSdkVersion.compile project(':lvl')
inside the {dependencies{
section.