LibGDX proguard
问题 I have been trying to shrink the size of my libGDX game .jar. I have been trying to get proguard to work. Proguard keeps complaining about missing classes, or the output .jar won't run. I have tried all the existing configuration files I found for libGDX. Does anyone have experience with setting up proguard? 回答1: You can use the following configuration for libGDX: -dontwarn com.badlogic.gdx.** -dontnote com.badlogic.gdx.** -keepclassmembers class com.badlogic.gdx.graphics.Cubemap* { *; }