blob: f0d0fef4282b708e4a690eedbbe52aed7c08052e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<manifest
package="com.android.incallui.answer.impl.hint"
xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<receiver android:name=".PawSecretCodeListener"
android:exported="true">
<intent-filter>
<action android:name="android.provider.Telephony.SECRET_CODE" />
<data android:scheme="android_secret_code" />
</intent-filter>
</receiver>
</application>
</manifest>
|