Skip to content

Instantly share code, notes, and snippets.

@catvinhquang
Created August 22, 2018 06:31
Show Gist options
  • Save catvinhquang/c33829007be227c3c897bf85777bc940 to your computer and use it in GitHub Desktop.
Save catvinhquang/c33829007be227c3c897bf85777bc940 to your computer and use it in GitHub Desktop.
Build AndEngine
  1. Set compileSdkVersion 17
  2. Set minSdkVersion 8
  3. Add these lines in both build.gradle files of your imported modules:
android {
    defaultConfig { ... }
    sourceSets {
        main {
            jni.srcDirs = []
        }
    }
    buildTypes { ... }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment