• Introduction
  • Dev Environment Setup
  • Developing Apps
  • Data Handling
  • Device Capabilities
  • Testing & Debugging
  • Extending
Warning Older Docs! - You are viewing documentation for a previous released version of RhoMobile Suite.

Using ProGuard for Android applications

To enable ProGuard you must set useproguard variable under android section to true:

android:
    useproguard: true

If you have non standard rules in your application, that uses such features as Reflection API it will be beter for you to make your own rules config. To include it and mearge with our base config you should write path to your config in variable proguardrules:

android:
    proguardrules: "rules.pro"
Back to Top