Skip to content Skip to sidebar Skip to footer

Implement Proguard With Cocoas2d

I have used cocos2d-x to develop the game. now i have applied pro-guard to it, resolved all the warnings. Finally I exported the api. The pro-guard worked fine for me. But when I t

Solution 1:

Can you share your proguard rules with us ? Did you add a rule to tell Proguard to avoid obfuscating native methods ?

-keepclasseswithmembernames,includedescriptorclasses class * {
native <methods>;
}

Proguard Documentation

Post a Comment for "Implement Proguard With Cocoas2d"