关于service中intent-filter data属性的一个小坑

时间:2021-07-11 16:26:20
<service android:name="com.xx.service.xxService" >
            <intent-filter>
                <action android:name="com.xx.service.xxService.Action" />
                <data  android:scheme="http"  android:host="www.baidu.com"   />
            </intent-filter>

</service>


如果要配置多个data,path属性就不要写了,不然会引起很多不必要的麻烦。