http://hi.baidu.com/donghaozheng/blog/item/30a00d4f9fca873baec3ab69.html
The only way I know to grant system-level permissions to android apps
(right now) is to install them to /system/app. Suppose you have an
installer program named my-installer.apk that you wish to give the
INSTALL_PACKAGES permission. You need to declare that permission in
the manifest, and then:
adb push my-installer.apk /system/app
http://groups.google.com/group/android-developers/browse_thread/thread/23a94989d964d7fd
http://blog.youkuaiyun.com/zengyangtech/article/details/5749999
> "A permission that the system is to grant only to packages in the
> Android system image or that are signed with the same certificates."
> Could someone really clarify what is called the "system image". Could
> someone list or clarify what encompasses the term system image for
> this protection? Is it only packages that are located under directory /
> system/ or more?
> are either protected by signature or SignatureorSystem.
> So, for the framework protected APIs, a Signature and
> SignatureorSystem protection make no protection difference?
must either be signed with the same certificate as the one who declared the
permission (in this case the framework in the path you supply, which is
signed with the core platform certificate), or they must be installed in the
system image.
http://groups.google.com/group/android-security-discuss/browse_thread/thread/acfe52ee02e8cc0b
授予Android应用系统级权限的方法
本文详细介绍了如何通过安装应用到/system/app目录来授予Android应用系统级权限,并解释了系统级权限授予的相关概念和限制。
2376

被折叠的 条评论
为什么被折叠?



