AndEngine icon indicating copy to clipboard operation
AndEngine copied to clipboard

Makes andengine a Gradle Project.

Open abeatte opened this issue 10 years ago • 3 comments

andengine is now a Gradle Project which can be imported right into Android Studio without any loss of feature or functionality.

abeatte avatar Aug 21 '14 03:08 abeatte

Why did you comment out the line "" ?

ixanezis avatar Aug 23 '14 08:08 ixanezis

That was supposed to be uncommented before the last commit. Good catch.

abeatte avatar Aug 23 '14 13:08 abeatte

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"
        }
    }
    

wonson avatar Nov 05 '14 08:11 wonson