Control Flow Flattening (Advanced Flow Obfuscation)
<bundleObfuscation>
<!--
Enables obfuscation of the Android Dex files in the application. The minSdkVersion of the application
must be at least 23.
-->
<obfuscateDex>true</obfuscateDex>
<!--
Enables obfuscation of the application assets. Each <asset> element defines a path to be obfuscated. The path can
include wildcards and is relative to the `assets/` directory (e.g. `<asset>secrets/*.txt</asset>` will match every
".txt" files at `assets/secrets`).
-->
<obfuscateAssets>
<asset>certificates/*.der</asset>
</obfuscateAssets>
<!--
Enables obfuscation of some asset files in the application. The <stack> option in <general> must be
configured according to your application stack so that the obfuscation is applied to the correct files.
-->
<obfuscateJs>true</obfuscateJs>
</bundleObfuscation>Last updated