I have studied the Tizen office document for a while, I have a chat app to develop at Tizen platform, the app include follow functions : Normal socket communication ,reading local contact , scaning qr code, record media,using WebRtc library. In other words , hope it like WhatsApp .Which one to choose between html+js and c + xml? Thanks a lot.
Asked
Active
Viewed 56 times
1 Answers
1
- Normal socket communication
- webapp : can use websocket but it is not normal socket.
- native : just use the normal socket.
- Reading local contact
- scaning qr code
- webapp : no api but there are many js lib is exist for it. ref it.
- native : can use media vision barcode device API
- record media
- webapp : can use media capture
- native : can use audio input and recorder api
- using WebRTC library
- webapp : can use getUserMedia but not support webrtc until 3.0
- native : can use many native webrtc libraries. but does not have in device api.
It looks almost same difficulty at features you want. personally I think native should more easier than web app at support webrtc.
You can pick native or webapp that you feel a little bit more easier.

pius lee
- 1,164
- 1
- 12
- 28
-
Thank you for your nice answer that every function have a related link .[link] (https://developer.tizen.org/forums/general-support/which-one-choose-between-native-and-web?langswitch=en) the link have related answer – Beijing Mobile Developer Sep 22 '16 at 07:39