什么是Tizen的数据/数据等价物

时间:2016-10-14 23:04:01

标签: tizen tizen-wearable-sdk tizen-web-app

android中安装的软件包转到/ data / data文件夹。您可以通过adb命令浏览它们。

有人可以告诉我tizen中安装的软件包将在哪里安装?如何使用sdb命令浏览?

1 个答案:

答案 0 :(得分:2)

据我所知,Tizen specs中没有关于应用程序安装目录的规范。

但我知道Mobile&可穿戴式(Z1,Z3,Gear S1,Gear S2)2.3.x仿真器和目标遵循相同的规则 对于预安装的应用程序:/usr/apps/[Pakcage ID]
对于用户安装的应用程序:/opt/usr/apps/[Package ID]

由于Tizen 3.0拥有多用户,因此应将用户应用安装到/home/[user name]/apps_rw/[Package ID]

另外,目前的Tizen有两种类型的应用程序Web和Native 每个应用程序都有不同的安装目录结构。

原生申请

author-signature.xml : Author signing that created with this App
bin                  : Excutable binary or libs for App
cache                : App Cache directory use internally for platform.
data                 : Data directory that application can read or WRITE
lib                  : Libraries used in only this application.
res                  : Resources that used in only this application. 
shared               : Files (Usually resource) that can SHARED with other apps.
signature1.xml       : File signs for every files in application.
tizen-manifest.xml   : Manifest file for this Application.

网络应用程序

shared               : Same Usage with Native
tmp                  : It works like the browser Cache file directory
bin                  : Link of the Launcher for Web Application that Platform internal use internally.
data                 : Same Usage with Native
res                  : Same Usage with Native 
res/wgt              : Every files in User `wgt` package
  • 放置在shared/res/中的应用程序(本机和Web)图标因为 它应该用于其他应用程序。
  • Web应用程序包中的文件 (wgt)将安装到res / wgt。
  • Message Port API使用shared和 内部共享/信任。 (webnative

如果您不是root用户,则无法读取目录中的文件,除了shared/res之外的其他内容 在模拟器或工程图像上可以使用sdb root on命令设置root。

目录可以随时更改,因为Tizen规范没有描述应用程序的目录。