Search code examples
androidandroid-studiogradlelibgdxandroid-gradle-plugin

Gradle: How to generate apk just for android and not include the other platforms like iOS,HTML etc


I am actually making a game using libGDX and I don't want to generate apk for other platforms like html, iOS,Desktop etc.How can I tweak the code to generate apk just for android.


Solution

  • There is a gradle commad:

    gradlew android:assembleRelease
    

    taken from here