How to determine if an app is native or html5?
android, html, iphone, native
Solution
You can unzip the .apk with any tool like winzip or winrar. If it's an html5-based app, you will see .html, .js and .css files in the /res/assets folder.
To get the .apk, pull it from your phone with adb. You might need root for this though.
Problem
I would like to know how any mobile app is native or html5. Is there any software or website that tells that. How can i detect if an app is native or html5?