Minor intent filter update

This commit is contained in:
Juha Heinanen
2023-04-28 11:48:42 +03:00
parent eec22d673f
commit c04c08536e

View File

@ -56,11 +56,21 @@
</intent-filter> </intent-filter>
<intent-filter> <intent-filter>
<action android:name="android.intent.action.DIAL" /> <action android:name="android.intent.action.DIAL" />
<action android:name="android.intent.action.CALL" />
<action android:name="android.intent.action.CALL_PRIVILEGED" />
<category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.DEFAULT" />
<data android:scheme="tel" />
<data android:scheme="sip" /> <data android:scheme="sip" />
<data android:scheme="tel" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.DIAL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.DIAL" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="sip" />
<data android:scheme="tel" />
</intent-filter> </intent-filter>
</activity> </activity>
<activity <activity
@ -168,6 +178,7 @@
<action android:name="com.tutpro.baresip.QUIT" /> <action android:name="com.tutpro.baresip.QUIT" />
</intent-filter> </intent-filter>
</receiver> </receiver>
</application> </application>
</manifest> </manifest>