-1

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.

1 Answers1

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
  • record media
  • 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