Skip to content

Commit

Permalink
FIX: broken LIGHTNING scheme handling
Browse files Browse the repository at this point in the history
  • Loading branch information
Overtorment committed Aug 21, 2019
1 parent d29790b commit cfd2c3d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
package="io.bluewallet.bluewallet">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission android:name="android.permission.CAMERA"/>

<application
android:name=".MainApplication"
Expand All @@ -19,6 +21,16 @@
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<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="lightning" />
<data android:scheme="bluewallet" />
<data android:scheme="lapp" />
<data android:scheme="blue" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
Expand Down

0 comments on commit cfd2c3d

Please sign in to comment.