编程语言
首页 > 编程语言> > android-如何防止用户安装使用某些特定权限的应用程序

android-如何防止用户安装使用某些特定权限的应用程序

作者:互联网

阻止用户下载和安装使用某些特定权限(例如位置和短信)的应用程序的最佳方法是什么.

是否可以通过编程方式在安装前从市场上解析应用程序清单并寻找特定权限并警告用户?

解决方法:

What is the best way to prevent a user from downloading and installing applications which uses some specific permissions like location and sms.

编写自己的固件,在该固件中,可以使用强制执行所需条件的普通安装程序机制替换该固件.

Android SDK应用程序不会干扰应用程序的安装.

Is it programatically possible to parse the manifest of an application from the market before it get installed and look for the specific permissions and alert the user?

不,对不起

但是,您可以侦听ACTION_PACKAGE_ADDED并通过PackageManager检查新安装的程序包,并在此时警告用户.由于安装后的软件包中的任何一个都无法在安装后立即运行,因此我认为在用户尝试使用新安装的应用程序之前,您的警报很有可能会出现.

标签:android-manifest,android
来源: https://codeday.me/bug/20191102/1988304.html