Other applications must user permission to read key details to connect

to AIDL interface

This is necessary, because upcoming version of the aidl-interface will
be able to return fingerprints and user ids to applications.
This commit is contained in:
Markus Doits 2011-01-23 21:36:20 +00:00
parent b5097b7a41
commit 4b882fa90b

View File

@ -195,7 +195,12 @@
android:configChanges="keyboardHidden|orientation|keyboard"/>
<service android:name=".Service" />
<service android:name=".ApgService" android:enabled="true" android:exported="true" android:process=":remote" >
<service
android:name=".ApgService"
android:enabled="true" android:exported="true"
android:process=":remote"
android:permission="org.thialfihar.android.apg.permission.READ_KEY_DETAILS"
>
<intent-filter>
<action android:name="org.thialfihar.android.apg.IApgService"/>
</intent-filter>