0

I am new to Tizen development. I just want to know whether I can use WIFI manager and speech recognition functionality with web app in tizen. If yes how?

Konrad Krakowiak
  • 12,285
  • 11
  • 58
  • 45
Sandip patil
  • 123
  • 2
  • 14

3 Answers3

3

Unfortunately, Wifi manager is not available for web app. You can write a native app for accessing wifi manager. If you want to keep your UI in web app, then write hybrid app. Hybrid app has a service in native and UI in web app. You can get/set all wifi info from service app and send those info to UI app through message port. Here is the example of writing hybrid app. Please check

Sample of Hybrid Service

Arup Sarker
  • 173
  • 1
  • 9
0

Yes, you can use WIFI manager in web apps.

Here you go

WIFI - https://developer.tizen.org/dev-guide/web/2.3.0/org.tizen.mobile.web.device.apireference/tizen/systeminfo.html#SystemInfoWifiNetwork

For Speech recognition - You can use JS speech APIs for speech recognition.

More info refer this link and search for "Web Speech" - https://developer.tizen.org/dev-guide/2.3.1/org.tizen.web.apireference/html/w3c_api/w3c_api_w.html

Shreeram K
  • 1,719
  • 13
  • 22
  • 1
    Thanks. My requirement in something different, after clicking on "ON" button in web App, wifi should started automatically and scan for Access Points and send frequency and signal strength of Access Points to server. This can be achived by "Wifi magager" in tizen but as per the link "https://developer.tizen.org/ko/development/dev-guide/2.3.0?langredirect=1" "Wifi magager" found only under nativ application not under web application. I don't want to just display Wifi information,So Is there any way to use "Wifi magager" in web application. – Sandip patil Oct 24 '15 at 18:05
0

Which version of Tizen are you using now?

2.4 guide is here.

https://developer.tizen.org/dev-guide/2.4/org.tizen.web.apireference/html/device_api/mobile/index.html

Youngj
  • 11