mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-22 11:29:23 +00:00
Remove Stack Wallet from list of apps with which to open file on Android (#268)
* remove content and http schemes, mimetype * use content and http, not file * use separate intent when opening file * move files to their own intention
This commit is contained in:
parent
aaba3a0933
commit
dfb227adfb
1 changed files with 10 additions and 3 deletions
|
@ -42,14 +42,21 @@
|
|||
android:label="Stack Wallet"
|
||||
android:priority="1">
|
||||
<action android:name="android.intent.action.VIEW"/>
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
<category android:name="android.intent.category.BROWSABLE"/>
|
||||
<data android:scheme="content" />
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
<data android:scheme="http" />
|
||||
<data android:scheme="file" />
|
||||
<data android:scheme="content" />
|
||||
<data android:host="*" />
|
||||
<data android:mimeType="*/*" />
|
||||
<data android:pathPattern=".*\\.swb" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<data android:scheme="file" />
|
||||
<data android:mimeType="*/*" />
|
||||
<data android:pathPattern=".*\\.swb" />
|
||||
<data android:host="*" />
|
||||
</intent-filter>
|
||||
|
||||
</activity>
|
||||
<!-- Don't delete the meta-data below.
|
||||
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
|
||||
|
|
Loading…
Reference in a new issue