I'm doing market research of the competition and would like to know whether they have written their apps native or not.
|
|
Both APK and IPA files are merely zip files that follow certain conventions. You can view the files inside by unarchiving them, it should be easy to identify files relating to frameworks like PhoneGap. You can obtain the IPA for an iOS application by dragging it out of iTunes. |
|||
|
Pull the apk from the device and use unzip. If you end up with a bunch of .js/.html files then it's mainly web tech.
This command will list all packages and there storage location. |
|||
|
|
|
I don't know if there is a foolproof way, but some warning signs I've noticed for these types of apps:
EDIT: I realize after reading your question tags you may not mean just Android apps. All my answers only pertain to my experience with Android apps. |
|||
|
|
|
Buy/download their app and play around with it. You can usually get a feel of whether it is written in HTML & js or whether it is native by the look and feel of the controls (buttons switches, textfields, textviews, etc.). If you're still having a hard time you can always pop open the .ipa and take a look at the resources packaged with the app. If you find any html or js files then it's probably a web app. You can also look at the binary of the app with a hex editor (you won't be able to see the source code but it should still give you an idea. |
|||
|
|
|
If by mobile web framework you mean things like PhoneGap, then, technically speaking, you shouldn't be able to tell, as PhoneGap works within the IDE of the native dev environment and you end up with native code. |
|||||
|