I was reading this article about decompilation of .apk file into java code...my question is how can i prevent it from decompilation? here is the link of that article
            Asked
            
        
        
            Active
            
        
            Viewed 1,211 times
        
    0
            
            
        - 
                    use proguard to obfuscate your code which will make it hard to reverse engineer – Raghunandan Oct 28 '13 at 07:25
1 Answers
1
            http://developer.android.com/tools/help/proguard.html.
Enable proguard in release mode
The ProGuard tool shrinks, optimizes, and obfuscates your code by removing unused code and renaming classes, fields, and methods with semantically obscure names. The result is a smaller sized .apk file that is more difficult to reverse engineer.
Also check the answer by commonsware in the below link
How to avoid reverse engineering of an APK file?
here's an example
http://proguard.sourceforge.net/index.html#manual/examples.html
 
    
    
        Community
        
- 1
- 1
 
    
    
        Raghunandan
        
- 132,755
- 26
- 225
- 256