我是靠谱客的博主 斯文戒指,最近开发中收集的这篇文章主要介绍SecurityException: Not allowed to start service Intent,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

第三方app 调用远程service 时,如果 manifest.xml 中service 节中为配置 intent-filter 节点,就会报

SecurityException: Not allowed to start service Intent  // SecurityException: Not allowed to bind service Intent

 

正确调用如下:

 

<service android:name="AlizeRecognitionService">
<intent-filter >

<action android:name="com.bime.alizerecognition.AlizeRecognitionService"/>
</intent-filter>

</service>

 

如果只是下面这样,在本app中调用该service 是没问题的,给第三方app调用就会报上述错误,相当于一种隐式的权限公开声明

 

<service android:name="AlizeRecognitionService">

</service>

最后

以上就是斯文戒指为你收集整理的SecurityException: Not allowed to start service Intent的全部内容,希望文章能够帮你解决SecurityException: Not allowed to start service Intent所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部