Add the ability to launch app from Crypto QR codes

This commit is contained in:
OmarHatem28 2022-08-09 13:34:40 +02:00
parent 71f768e6b0
commit 01adf863d0
2 changed files with 46 additions and 0 deletions

View file

@ -38,6 +38,15 @@
android:scheme="cakewallet"
android:host="y.at" />
</intent-filter>
<!-- bitcoin qr code scheme -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="bitcoin" />
<data android:scheme="monero" />
<data android:scheme="litecoin" />
</intent-filter>
</activity>
<meta-data
android:name="flutterEmbedding"