Skip to content

Commit a7b3a0a

Browse files
authored
Merge pull request #126 from Bitcoin-com/develop
0.9.0 - Open from URI's
2 parents 2fe46a8 + a23a3c2 commit a7b3a0a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+987
-167
lines changed

.flowconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
6666
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
6767

6868
[version]
69-
^0.94.0
69+
^0.101.0

.prettierrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
{
2-
"singleQuote": false
2+
"singleQuote": false,
3+
"printWidth": 80,
4+
"arrowParens": "avoid",
5+
"trailingComma": "none",
6+
"bracketSpacing": true
37
}

App.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,16 @@ const AppWrapper = styled(View)`
1717
flex: 1;
1818
`;
1919

20+
const prefix = "bitcoincash:";
21+
const slpPrefix = "simpleledger:";
22+
2023
const App = () => {
2124
return (
2225
<Provider store={store}>
2326
<PersistGate loading={null} persistor={persistor}>
2427
<ThemeProvider theme={spaceBadger}>
2528
<AppWrapper>
26-
<AppNavigator />
29+
<AppNavigator uriPrefix={prefix || slpPrefix} />
2730
</AppWrapper>
2831
</ThemeProvider>
2932
</PersistGate>

CHANGELOG.md

Lines changed: 11 additions & 3 deletions

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ android {
105105
applicationId "com.badgermobile"
106106
minSdkVersion rootProject.ext.minSdkVersion
107107
targetSdkVersion rootProject.ext.targetSdkVersion
108-
versionCode 7
109-
versionName "1.5"
108+
versionCode 8
109+
versionName "1.6"
110110
missingDimensionStrategy 'react-native-camera', 'general'
111111
}
112112
signingConfigs {

android/app/src/main/AndroidManifest.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,18 @@
2222
<action android:name="android.intent.action.MAIN" />
2323
<category android:name="android.intent.category.LAUNCHER" />
2424
</intent-filter>
25+
<intent-filter>
26+
<action android:name="android.intent.action.VIEW" />
27+
<category android:name="android.intent.category.DEFAULT" />
28+
<category android:name="android.intent.category.BROWSABLE" />
29+
<data android:scheme="bitcoincash" />
30+
</intent-filter>
31+
<intent-filter>
32+
<action android:name="android.intent.action.VIEW" />
33+
<category android:name="android.intent.category.DEFAULT" />
34+
<category android:name="android.intent.category.BROWSABLE" />
35+
<data android:scheme="simpleledger" />
36+
</intent-filter>
2537
</activity>
2638
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
2739
</application>
30.2 KB
611 Bytes
3.47 KB
814 Bytes

0 commit comments

Comments
 (0)