Skip to content Skip to sidebar Skip to footer

Phonegap Android Assets Code Is Viewable - Want To Convert It As Unreadable

I am developing sample app for android using Phonegap. In assets/www/ folder all the html,css, js codes are readable when I extract .apk file. Is there any way to convert it as unr

Solution 1:

JavaScript, CSS and HTML are all client side languages, and you can't really make them unreadable by "compiling". At best, you could obfuscate the code using any obfuscating service before you package it into an apk. This'll just change variable names to meaningless stuff, and remove indentation and spacing to reduce code readability, but its the best you can do for these languages.


Post a Comment for "Phonegap Android Assets Code Is Viewable - Want To Convert It As Unreadable"