android中安装的软件包转到/ data / data文件夹。您可以通过adb命令浏览它们。
有人可以告诉我tizen中安装的软件包将在哪里安装?如何使用sdb命令浏览?
答案 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)图标因为
它应该用于其他应用程序。 wgt
)将安装到res / wgt。 如果您不是root用户,则无法读取目录中的文件,除了shared/res
之外的其他内容
在模拟器或工程图像上可以使用sdb root on
命令设置root。
目录可以随时更改,因为Tizen规范没有描述应用程序的目录。