@jimrising/easymerchantsdk-react-native 2.6.2 → 2.6.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.yarn/install-state.gz +0 -0
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/reactlibrary/RNEasymerchantsdkModule.java +0 -1
- package/ios/Classes/EasyMerchantSdk.m +0 -1
- package/ios/Helper/GrailPayWebViewController.swift +1 -0
- package/ios/easymerchantsdk.podspec +1 -1
- package/package.json +1 -1
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
package/android/build.gradle
CHANGED
|
@@ -97,7 +97,7 @@ dependencies {
|
|
|
97
97
|
implementation 'com.google.android.material:material:1.13.0'
|
|
98
98
|
|
|
99
99
|
// Third-party libs
|
|
100
|
-
implementation 'com.app:paysdk:1.
|
|
100
|
+
implementation 'com.app:paysdk:1.8.4'
|
|
101
101
|
implementation 'com.hbb20:ccp:2.7.3'
|
|
102
102
|
implementation 'com.github.bumptech.glide:glide:5.0.4'
|
|
103
103
|
implementation 'com.github.androidmads:QRGenerator:1.0.5'
|
|
@@ -37,7 +37,6 @@ public class RNEasymerchantsdkModule extends ReactContextBaseJavaModule {
|
|
|
37
37
|
properties.load(fis);
|
|
38
38
|
fis.close();
|
|
39
39
|
} catch (IOException e) {
|
|
40
|
-
android.util.Log.e("RNEasymerchantsdk", "Failed to load config.properties: " + e.getMessage());
|
|
41
40
|
}
|
|
42
41
|
return properties;
|
|
43
42
|
}
|
|
@@ -347,6 +347,7 @@ extension GrailPayWebViewController: WKNavigationDelegate {
|
|
|
347
347
|
|
|
348
348
|
if scheme == "expediter" || scheme == "expeditor" {
|
|
349
349
|
if Self.WEBVIEW_LOG_ONLY_ON_CALLBACK_DEEPLINK {
|
|
350
|
+
print("[GrailPay] callback deeplink (log only, copy to trigger manually): \(urlString)")
|
|
350
351
|
decisionHandler(.cancel)
|
|
351
352
|
return
|
|
352
353
|
}
|