react-native-hyperpay-sdk 0.35.0 → 0.37.0

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.
File without changes
@@ -1,2 +1,2 @@
1
- #Sun Jan 22 19:00:03 EET 2023
2
- gradle.version=7.4.2
1
+ #Thu Nov 09 11:09:17 EET 2023
2
+ gradle.version=7.4
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="CompilerConfiguration">
4
+ <bytecodeTargetLevel target="11" />
5
+ </component>
6
+ </project>
@@ -0,0 +1,17 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="GradleSettings">
4
+ <option name="linkedExternalProjectsSettings">
5
+ <GradleProjectSettings>
6
+ <option name="testRunner" value="GRADLE" />
7
+ <option name="distributionType" value="DEFAULT_WRAPPED" />
8
+ <option name="externalProjectPath" value="$PROJECT_DIR$" />
9
+ <option name="modules">
10
+ <set>
11
+ <option value="$PROJECT_DIR$" />
12
+ </set>
13
+ </option>
14
+ </GradleProjectSettings>
15
+ </option>
16
+ </component>
17
+ </project>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ExternalStorageConfigurationManager" enabled="true" />
4
+ <component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="Android Studio default JDK" project-jdk-type="JavaSDK">
5
+ <output url="file://$PROJECT_DIR$/build/classes" />
6
+ </component>
7
+ <component name="ProjectType">
8
+ <option name="id" value="Android" />
9
+ </component>
10
+ </project>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$/.." vcs="Git" />
5
+ </component>
6
+ </project>
@@ -56,12 +56,12 @@ repositories {
56
56
  dependencies {
57
57
 
58
58
  if (project.gradle.startParameter.taskNames.any { it.toLowerCase().contains('release') }) {
59
- implementation files('libs/ipworks3ds_sdk_deploy.aar')
59
+ implementation(name:'ipworks3ds_sdk_deploy', ext:'aar')
60
60
  }
61
61
  else {
62
- implementation files('libs/ipworks3ds_sdk.aar')
62
+ implementation(name:'ipworks3ds_sdk', ext:'aar')
63
63
  }
64
- implementation files('libs/oppwa.mobile-4.6.0-release.aar')
64
+ implementation(name:'oppwa.mobile-4.6.0-release', ext:'aar')
65
65
  implementation "androidx.appcompat:appcompat:1.4.2"
66
66
  implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
67
67
  implementation "androidx.browser:browser:1.4.0"
@@ -0,0 +1,8 @@
1
+ ## This file must *NOT* be checked into Version Control Systems,
2
+ # as it contains information specific to your local configuration.
3
+ #
4
+ # Location of the SDK. This is only used by Gradle.
5
+ # For customization when using a Version Control System, please read the
6
+ # header note.
7
+ #Thu Nov 09 11:08:49 EET 2023
8
+ sdk.dir=/Users/r.mabrouk/Library/Android/sdk
package/ios/HyperPay.m CHANGED
@@ -137,7 +137,7 @@ RCT_EXPORT_METHOD(applePay:(NSDictionary*)params resolver:(RCTPromiseResolveBloc
137
137
  resolve(@{@"resourcePath": transaction.resourcePath});
138
138
  }
139
139
  } cancelHandler:^{
140
- reject(@"applePay",@"Executed if the shopper closes the payment page prematurely.",NULL);
140
+ reject(@"applePay",@"cancel",NULL);
141
141
  // Executed if the shopper closes the payment page prematurely.
142
142
  }];
143
143
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-hyperpay-sdk",
3
- "version": "0.35.0",
3
+ "version": "0.37.0",
4
4
  "description": "hyperpay",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",