[Tizen开发]基于Tizen平台的终端开发模拟器1 - Web

1.  官方 模拟器 Tutorials

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

2. 最新版本发布于 2013.05

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可以参考 Tizen
Device 1.0 API Specification

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 Tizen
Device 1.0 API Specification
.

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/

[Tizen开发]基于Tizen平台的终端开发模拟器1 - Web

时间: 2024-12-23 04:27:01

[Tizen开发]基于Tizen平台的终端开发模拟器1 - Web的相关文章

基于 Koa平台Node.js开发的KoaHub.js的控制器,模型,帮助方法自动加载

koahub-loader koahub-loader是基于 Koa平台Node.js开发的KoaHub.js的koahub-loader控制器,模型,帮助方法自动加载 koahub loader Installation $ npm install koahub-loader Use with koa // 1.model loader var model = loader([ {      root: './app/model',      suffix: '.model.js' }, { 

C#开发微信.NET平台MVC微信开发 发送普通消息Demo以及收不到消息的问题

不得不说现在微信非常火,微信开放平台可以自己写程序跟用户交互,节省了前台开发成本,免去用户装客户端的烦恼.于是今天兴致来潮,想做一个试试. 首先找到了开发者文档,看了看,蛮简单的.(公众号早已申请,有兴趣可以关注看看:zyjsoft) 第一步(提供接口,供微信调用,由于是HTTP请求,于是我用MVC模式做了一个简单的接口): //认证接口 public ActionResult WeiXin(string signature, string timestamp, string nonce, st

基于 Koa平台Node.js开发的KoaHub.js连接打印机的代码

最近好多小伙伴都在做微信商城的项目,那就给大家分享一个基于 Koa.js 平台的 Node.js web 开发的框架连接微信易联云打印机接口的代码,供大家学习.koahub-yilianyun 微信易联云打印机接口 koahub-yilianyun易联云打印机node接口 Installation $ npm install koahub-yilianyunUse with co-request var printer = require('koahub-yilianyun');var resu

基于LBS平台的iOS开发

LBS,即Location Based Services,基于位置服务,用于定位.导航等功能,比如地图应用.订外卖等的app就需要这个功能. 在这里我使用的是高德LBS开放平台,地址:http://lbs.amap.com/ 进入网站,首先注册并认证为开发者,然后为你的每个APP申请一个key,其中安全码(Bundle Identifier)通过Xcode切换到General标签,查看Bundle Identifier. 使用第三方服务,我们可以使用自动配置,这里就要使用到Cocoapods.C

基于 Koa平台Node.js开发的KoaHub.js获取/设置会话功能代码

koa-session2 Middleware for Koa2 to get/set session use with custom stores such as Redis or mongodb with Babel koa-session2     Middleware for Koa2 to get/set session use with custom stores such as Redis or mongodb with Babel If you are not using bab

基于 Koa平台Node.js开发的KoaHub.js的静态服务器重写和索引代码

koa-static-server Static file serving middleware for koa with directory, rewrite and index support koa-static-server static file serving middleware for koa with directory, rewrite and index support Installation $ npm install koa-static-server API var

基于 Koa平台Node.js开发的KoaHub.js的模板引擎代码

koahub-handlebars koahub-handlebars koahub handlebars templates Installation $ npm install koahub-handlebars Use with koa var koa = require('koa'); var hbs = require('koahub-handlebars'); var app = koa(); // koahub-handlebars is middleware. `use` it 

基于 Koa平台Node.js开发的KoaHub.js的输出json到页面代码

koahub-body-res koahub body res Format koa's respond json. Installation $ npm install koahub-body-res Use with koa var app = require('koa')(); var koaRes = require('koahub-body-res'); app.use(koaRes()); this.data = 'This is a body'; this.msg = 'This 

基于 Koa平台Node.js开发的KoaHub.js的跳过组件代码

koahub-skip koahub skip middleware koahub skip Conditionally skip a middleware when a condition is met. Install npm i koahub-skip --save Usage With existing middlewares: var skip = require('koahub-skip'); var serve  = require('koa-static'); var stati