AndEngine
AndEngine copied to clipboard
Makes andengine a Gradle Project.
andengine is now a Gradle Project which can be imported right into Android Studio without any loss of feature or functionality.
Why did you comment out the line "" ?
That was supposed to be uncommented before the last commit. Good catch.
I dunno if committing .iml is a good idea, because for me .iml is in .gitignore
btw, to make it compilable in Android Studio can be simply done by
-
Specify ndk.dir=/path/to/ndk in local.properties
-
Modify build.gradle in AndEngine module
defaultConfig { /* ... */ // Add below settings ndk { moduleName "andengine_shared" stl "stlport_shared" ldLibs "GLESv2" } }