【发布时间】:2012-07-01 22:34:45
【问题描述】:
昨天我想在 google play 商店部署/发布我的第一个 Android 应用程序,但遇到了需要/添加的 STICKY_BROADCAST 权限。
应用的google play store权限标签说明:
SEND STICKY BROADCAST
Allows the app to send sticky broadcasts, which remain after the broadcast ends. Malicious apps may make the tablet slow or unstable by causing it to use too much memory. Allows the app to send sticky broadcasts, which remain after the broadcast ends. Malicious apps may make the phone slow or unstable by causing it to use too much memory.
我不希望用户认为我的应用程序是邪恶的或缓慢的应用程序(因为我的代码中没有使用任何 STICKY_BROADCAST 功能)。我如何才能删除此权限,或者 Adobe Air 是否需要此权限?在 adobe 网站上只找到一篇文章(有类似的问题)但没有答案。
在 app.xml 配置中我只定义了两个权限:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.VIBRATE"/>
我使用互联网连接来获取应用程序的一些配置。当用户点击屏幕时,我使用 adobe 示例中的振动来振动手机。
为什么在我部署/发布应用程序时需要/将权限 SEND STICKY BROADCAST 添加到包中,我可以做些什么来避免它。或者更好:有没有办法避免这种权限?
【问题讨论】:
-
有人吗?过了这么久,问题依旧存在。
标签: android permissions flash-builder broadcast