Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,5 @@ vendor/
example/vendor/

test-results/

boltpay-react-native-*.tgz
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- BoltReactNativeSdk (0.5.3):
- BoltReactNativeSdk (0.5.4):
- hermes-engine
- RCTRequired
- RCTTypeSafety
Expand Down Expand Up @@ -2063,7 +2063,7 @@ EXTERNAL SOURCES:
:path: "../../node_modules/react-native/ReactCommon/yoga"

SPEC CHECKSUMS:
BoltReactNativeSdk: 284d07b55489adecbae8642ed3289504bc7de1db
BoltReactNativeSdk: 864da565871dba0ae2e0844e77cd58297c068af7
FBLazyVector: c12d2108050e27952983d565a232f6f7b1ad5e69
hermes-engine: f4f579ea06f83a03800993f3f445a5025f78f893
RCTDeprecation: 3280799c14232a56e5a44f92981a8ee33bc69fd9
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@
"types": "./lib/typescript/src/index.d.ts",
"exports": {
".": {
"react-native": "./src/index.ts",
"source": "./src/index.ts",
"types": "./lib/typescript/src/index.d.ts",
"default": "./lib/module/index.js"
},
"./payments": {
"react-native": "./src/payments/index.ts",
"source": "./src/payments/index.ts",
"types": "./lib/typescript/src/payments/index.d.ts",
"default": "./lib/module/payments/index.js"
Expand Down
10 changes: 10 additions & 0 deletions react-native.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports = {
dependency: {
platforms: {
ios: {},
android: {
componentDescriptors: ['BoltGooglePayButtonComponentDescriptor'],
},
},
},
};
2 changes: 1 addition & 1 deletion src/telemetry/sdkVersion.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Auto-updated by scripts/update-sdk-version.js during release. Do not edit manually.
export const SDK_VERSION = '0.5.3';
export const SDK_VERSION = '0.5.4';
Loading