How to exclude a native extension in release mode?

Hey guys,

I’m using DefOS during development to help with the workflow and window management of various devices, aspect ratios, etc.
I won’t need the extension when in release mode. Is there a way for me to exclude the extension completely?

Thanks.

You can use a different app manifest for release mode, in a separate “release.properties” file (ini format)
E.g. when building with bob.jar:

java bob.jar --settings release.properties ...

These properties are applied “on top” of the regular game.projectproperties.

5 Likes

Oh ok nice. Thanks a lot!