Skip to content
Tal Kirshboim edited this page Dec 28, 2015 · 2 revisions

When using Proguard to make an obfuscated release build, adding the following two rules to the proguard configuration will conservatively ensure that all the PdCore and AndroidMidi classes are retained:

-keep class org.puredata.** { *; }
-keep class com.noisepages.nettoyeur.** { *; }

See the PdTest sample app for an example.