博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Tizen开发]基于Tizen平台的终端开发模拟器1 - Web
阅读量:4592 次
发布时间:2019-06-09

本文共 2065 字,大约阅读时间需要 6 分钟。

 

1.  官方 模拟器 Tutorials

https://01.org/web-simulator/

2. 最新版本发布于 2013.05

3338856173842195383.jpg (566×131)

I am honored to introduce the Web Simulator for its public release on 01.org. The Web Simulator is a lightweight mobile application development and testing tool for web application developers. It simulates device API implementation on different platforms, so that web applications with device APIs can be easily tested without a real platform device.

官方介绍:该模拟器针对不同平台APIs的一种轻量级移动Web应用开发与测试工具。支持大部分(90%左右)的Tizen 1.0 Web APIs,附带Cordova平台开发,具体API可以参考 。

The Web Simulator is designed to have these features:

  • Runs on Windows, Linux, and Mac OS X platform.
  • Can simulate different platform APIs. Currently we support the majority (~90%) of the Tizen 1.0 Web APIs.
  • Enables running and debugging a web application, loaded from either local file system or from a web server.
  • Provides various device panels to support event interaction with applications.

The Web Simulator architecture and code are inherited from the Ripple-UI. Currently, we have implemented most of the .

714383490991726282.jpg (750×512)

Tizen 2.1 + Cordova 2.0.0 Web 模拟器

 3. 注意事项

该模拟器作为Chrome浏览器的插件,需要修改一些参数来启动 模拟器。

1. 确定 chrome.exe的路径。

在给出的bat文件里 标注的路径为 C:\Users\admin\AppData\Roaming\Google\Chrome\Application\chrome.exe

而本人的Windows 8 系统默认安装Chrome浏览器的位置为 C:\Users\admin\AppData\Local\Google\Chrome\Application\chrome.exe

所以需要改动内容为一下:

改前:

ver | find "Version 6" && set DIR=%LOCALAPPDATA%|| set DIR=%APPDATA%

set CHROME=%DIR%\Google\Chrome\Application\chrome.exe
set /p OPTIONS= <%CD%\sdk-wrt-options.txt
start %CHROME% %OPTIONS% --app="file://%CD%/web/index.html" --user-data-dir=%CD%/sdk-profile-data/

改后:

ver | find "Version 6"

set CHROME=C:\Users\admin\AppData\Local\Google\Chrome\Application\chrome.exe
set /p OPTIONS= <D:\01.Softworld\100.Resources\02.Samsung\02.Tizen\web-simulator\sdk-wrt-options.txt
start %CHROME% %OPTIONS% --app="D://01.Softworld/100.Resources/02.Samsung/02.Tizen/web-simulator/web/index.html" --user-data-dir=D:/01.Softworld/100.Resources/02.Samsung/02.Tizen/web-simulator/sdk-profile-data/

 

 

转载于:https://www.cnblogs.com/webapplee/p/3767867.html

你可能感兴趣的文章
JCEF3——谷歌浏览器内核Java版实现(一):使用jawt获取窗体句柄
查看>>
多态与异常处理课后习题
查看>>
孕龙逻辑分析仪 ZeroPlus Logic Analyzer
查看>>
NativeXml: A native Delphi XML parser and writer
查看>>
Win7 开启显示快速启动工具栏,发送到快速启动右键菜单
查看>>
回忆我是如何赢得一次踢毽子比赛
查看>>
Java性能总结四(转)
查看>>
net 程序员面试宝典
查看>>
2019年机器学习:追踪人工智能发展之路
查看>>
2.Android新版开发教程&笔记—Activity间的数据传递
查看>>
经典的电工电路图(转载的)
查看>>
Nginx详解三:Nginx基础篇之yum安装
查看>>
DataGuard 单实例到RAC搭建
查看>>
ASP.NET Zero--4.不使用谷歌字体,提升加载速度
查看>>
【心路历程】(NOIP 203)&(HNOI 355)
查看>>
css自问自答(一)
查看>>
c#mvc似乎有个坑,关于第一次请求服务器记录session失效
查看>>
3.通过js代码设置css样式
查看>>
Prism4文档翻译(第一章 第五部分) 转载bluesky234
查看>>
ZH奶酪:C语言中malloc()和free()函数解析
查看>>