mirror of
https://github.com/nextcloud/talk-android
synced 2025-07-06 20:39:47 +01:00
Add intent-filter to Manifest file
Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
This commit is contained in:
parent
71a12cd3cc
commit
1cdb491c7f
@ -153,7 +153,20 @@
|
||||
|
||||
<activity
|
||||
android:name=".chat.ChatActivity"
|
||||
android:theme="@style/AppTheme" />
|
||||
android:exported="true"
|
||||
android:theme="@style/AppTheme" >
|
||||
|
||||
<intent-filter android:autoVerify="true">
|
||||
<action android:name="android.intent.action.VIEW"/>
|
||||
<category android:name="android.intent.category.BROWSABLE"/>
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
<data android:scheme="http"/>
|
||||
<data android:scheme="https"/>
|
||||
<data android:host="*"/>
|
||||
<data android:pathPrefix="/index.php/call/..*"/>
|
||||
</intent-filter>
|
||||
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name=".activities.CallActivity"
|
||||
|
Loading…
Reference in New Issue
Block a user