tuna
tuna

Reputation: 312

Obfuscating JavaFX application

Since fxml-files uses Controller classes for events, how is it possible to obfuscate an JavaFX application? When the obuscated conntroller classes have different names and paths, the fxml files can't locate them.

Editing the fxml files after obfuscating is not the solution i am searhing for.

Is there another option?

Upvotes: 0

Views: 2954

Answers (1)

Cobbles
Cobbles

Reputation: 1798

No point reinventing the wheel;

A quick google search yielded this website.

It uses the Proguard obfuscator.

Upvotes: 2

Related Questions