安卓AIDL之Service权限配置

Service端的清单文件:


<permission android:name="com.aa"
android:protectionLevel="signature" />

<uses-permission android:name="com.aa" />

Service配置:

<service
    android:name="com.pax.pay.service.PaymentService"
    android:permission="com.aa">
    <intent-filter>
       <action android:name="com.pax.pay.service.PaymentService" />
    intent-filter>
service>

client端清单文件要使用相关权限:

<uses-permission android:name="com.aa" />

据说声明的权限一定要包含点号 .

你可能感兴趣的:(Android)