Vamsi Rao
Vamsi Rao

Reputation: 27

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.

Upvotes: 1

Views: 53

Answers (1)

exenza
exenza

Reputation: 1056

There is a gradle commad:

gradlew android:assembleRelease

taken from here

Upvotes: 1

Related Questions