-
Notifications
You must be signed in to change notification settings - Fork 60
Frequently Asked Questions
zuzu_yun edited this page Apr 13, 2017
·
1 revision
Can I build the development environment setting simply / easily?
- We provide script files which can do automatic setting from git clone to build and package for TOAST. There will be more helpful for starting with TOAST.
- But maybe if you'd like to know little more about this project in detail, we recommend to proceed with step by step directly. It will become great help to you very much for using TOAST.
- For more information, go to Script File & Prepare to start
The error related to "Content Security Policy" is occurred in tizen.
- Delete under meta tag.
<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *">
- In tizen, "Content Security Policy" rule can be only applied in 'config.xml', so that meta tag is not needed. It can occur conflict.
Can't find variable: toast
- The 'toast.js' file is created among the build process. So if you want to use toast APIs, include the file in www/index.html.
<script type="text/javascript" src="toast.js"></script>
Failed to load resource: cordova_plugin.js
- The 'cordova_plugin.js' file is not created in TOAST process because the TOAST plugin is not an official plugin of Cordova. Accordingly we found the solution in order to solve this problem.
- So now, this file doesn't have an effect on your TOAST web app for installing / operating / etc at all.
Therefore you don't need to pay attention to this message.
The command 'tizen' / ‘ares’ failed.
- For Tizen/webOS project, the error is occurred due to problem of the environment variable setup process in build process.
- For more information, go to How to build and package
I have the error that is “java.lang.NoClassDefFoundError”.
How can I solve this error?
- The reason of "NoClassDefFoundError" error is the non-installation of Native CLI. So please check again.
- For more information, go to How to install Native CLI
"The [http://developer.samsung.com/privilege/drminfo] privilege is required" error in tizen IDE
- The following condition is necessary for testing the “Drminfo module” in TOAST app.
- Add privilege in 'config.xml'
<tizen:privilege name="http://developer.samsung.com/privilege/drminfo"/>
- Certification for partner level is required to use drminfo module in tizen. So you should create a "Certificate" for partner level in tizen IDE.
- For more information, go to How to create certificate & What is the privilege
I want to access/use the Orsay/Tizen APIs that is not supported in TOAST.
- You can access/use the device APIs for each platform that is not supported in TOAST through "Platform detection".
- For more information, go to Platform Detection
uuuu
Getting Started
Converting Tizen to Toast
- Prepare to convert
- Tizen API: AVPlay
- Tizen API: DrmInfo(Deprecated)
- Tizen API: Application
- Tizen API: TVInputDevice
- Tizen API: TVAudioControl
- Tizen API: TVWindow
- Tizen API: TVChannel
- Tizen API: IME
- Tizen API: ProductInfo
- Tizen API: Network
- How to detect platform
Converting Legacy to Toast
- Prepare to convert
- Legacy API: AVPlay
- Legacy API: TVInfo
- Legacy API: Common
- Legacy API: InputDevice
- Legacy API: AudioControl
- Legacy API: TVWindow
- Legacy API: TVChannel
- Legacy API: IME
- How to detect platform
API Reference
- supported cordova plugin
- toast.Media
- toast.MediaPlugin
- toast.drminfo(Deprecated)
- toast.application
- toast.inputdevice
- toast.tvaudiocontrol
- toast.tvwindow
- toast.tvchannel
- toast.billing
Supported platforms
Sample App
Contribution
Frequently Asked Questions