android 中apk如何防止反编译?

android 2.3以上:

很简单的一句话"在default.properties文件最后添加proguard.config=proguard.cfg" 

android2.3及以下:

复制下面default.properties文件到你的工程目录即可,注意target的版本号:

  1. # This file is automatically generated by Android Tools.  
  2. # Do not modify this file -- YOUR CHANGES WILL BE ERASED!  
  3. #  
  4. # This file must be checked in Version Control Systems.  
  5. #  
  6. # To customize properties used by the Ant build system use,  
  7. # "build.properties", and override values to adapt the script to your  
  8. # project structure.  
  9.   
  10. # Project target.  
  11. target=android-9  
  12. proguard.config=proguard.cfg  

你可能感兴趣的:(android,反编译)