[android] show Toast when user shares own handshake link

This also limits the AddContactActivity to run within one single task
This commit is contained in:
Torsten Grote
2019-05-03 11:07:23 -03:00
parent d17331b578
commit 19bc73ac61
3 changed files with 38 additions and 28 deletions

View File

@@ -427,13 +427,16 @@
<activity
android:name=".android.contact.add.remote.AddContactActivity"
android:theme="@style/BriarTheme"
android:label="@string/add_contact_remotely_title_case"
android:launchMode="singleTask"
android:theme="@style/BriarTheme"
android:windowSoftInputMode="stateHidden|adjustResize">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="briar"/>
</intent-filter>
<intent-filter>