How can I inlcude some of the packages after I excluded the parent package in proguard.cfg:
Ex:
-keep com.myapp.** { *; }
I want proguard to obfuscate com.myapp.data.** { *; }
You can use ProGuard-style regular expressions for the class name:
-keep class !com.myapp.data.**,com.myapp.** { *; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With