简体   繁体   中英

Proguard: How to prevent the renaming of Packagename in Android?

I use a c++ native Library in my Android project, but when Proguard is Enabled, the app crashes. My code in c++ depends on the packagename, so I need to prevent the packagename from being renamed by Proguard. I used this rule so far, but it's not working:

  -keepclasseswithmembernames class * {
  native <methods>;
  }

I appreciate you support.

Try this configuration to prevent specified package names from being obfuscated.

-keeppackagenames [package_filter]

A filter is a list of comma-separated names that can contain wildcards.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM