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
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.4.0):
- BoltReactNativeSdk (0.5.2):
- hermes-engine
- RCTRequired
- RCTTypeSafety
Expand Down Expand Up @@ -2063,7 +2063,7 @@ EXTERNAL SOURCES:
:path: "../../node_modules/react-native/ReactCommon/yoga"

SPEC CHECKSUMS:
BoltReactNativeSdk: 040ede4932480f767536ea24dde9f7f088134947
BoltReactNativeSdk: e8986a6326b43623245c77286fa5d5ad6ab23f43
FBLazyVector: c12d2108050e27952983d565a232f6f7b1ad5e69
hermes-engine: f4f579ea06f83a03800993f3f445a5025f78f893
RCTDeprecation: 3280799c14232a56e5a44f92981a8ee33bc69fd9
Expand Down
1 change: 0 additions & 1 deletion scripts/update-sdk-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@ const OUT = path.join(ROOT, 'src', 'telemetry', 'sdkVersion.ts');
const content = `// Auto-updated by scripts/update-sdk-version.js during release. Do not edit manually.\nexport const SDK_VERSION = '${version}';\n`;

fs.writeFileSync(OUT, content, 'utf8');
console.log(`SDK_VERSION set to ${version}`);
4 changes: 4 additions & 0 deletions src/payments/ApplePay.android.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// Android stub — Apple Pay is iOS only.
// Metro resolves this file on Android, preventing NativeApplePayButton from loading
// (which calls codegenNativeComponent('BoltApplePayButton') — not registered on Android).
export const ApplePay = () => null;
4 changes: 4 additions & 0 deletions src/payments/GoogleWallet.ios.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// iOS stub — Google Pay is Android only.
// Metro resolves this file on iOS, preventing NativeGooglePayButton from loading
// (which calls codegenNativeComponent('BoltGooglePayButton') — not registered on iOS).
export const GoogleWallet = () => null;
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.0';
export const SDK_VERSION = '0.5.2';
Loading