I tried to use a similar method used for my own libraries.
Last night I managed to run the examples; as a project from scratch in Android Studio and wrote a brief recommendation
I hope he helps you too, but I still really regret that you have no information or errors;)
Here is the link .. http://bgnstudio.wordpress.com
I tried to use this method in detail:
Create a new project in Android Studio.
From the nightly assembly libgdx, get;
Libgdx.so files within the armeabi/armeabi-v7a folders as needed. Gdx.jar and gdx-source.jar Gdx-backend-android.jar
Create the lib and libs directories in the project folder.
Copy the armeabi *, gdx.jar and gdx-source.jar files in the "lib" directory.
Also copy gdx-backend-android.jar to the "libs" directory.
*
In the project tree; add gdx.jar and gdx-backend-android.jar as a library.
In the library settings add gdx-source.jar under gdx.jar; Then open the module settings and add these libraries depending. And check them out for compilation.
Archive the armeabi folders along with the parent directory into zip files and rename the extension from zip to jar.
armeabi.jar : "/lib/armeabi/libgdx.so" armeabi-v7a.jar :"/lib/armeabi-v7a/libgdx.so"
And move these jar files to the "libs" directory.
The final look of the folders will be like this:
|-lib |---gdx.jar |---gdx-sorces.jar (added as source library of gdx.jar in library settings) |-libs |--- armeabi.jar |--- armeabi-v7a.jar |--- gdx-backend-android.jar
Now modify the build.gradle file:
dependencies { compile 'com.android.support:appcompat-v7:+' compile files('lib/gdx.jar') compile files('libs/gdx-backend-android.jar') compile fileTree(dir: 'libs' , include:'*.jar') }