facia-mobilesdk 0.7.5 → 0.7.7
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/android/build.gradle
CHANGED
|
@@ -59,7 +59,7 @@ repositories {
|
|
|
59
59
|
|
|
60
60
|
dependencies {
|
|
61
61
|
implementation 'com.facebook.react:react-native:+'
|
|
62
|
-
implementation 'com.github.FaciaMobile:android-core:3.
|
|
62
|
+
implementation 'com.github.FaciaMobile:android-core:3.3.1'
|
|
63
63
|
implementation 'com.google.android.material:material:1.12.0'
|
|
64
64
|
}
|
|
65
65
|
|
|
@@ -37,7 +37,7 @@ public class FaciaReactNativeModule extends ReactContextBaseJavaModule {
|
|
|
37
37
|
try {
|
|
38
38
|
|
|
39
39
|
JSONObject configJson = new JSONObject(configObject);
|
|
40
|
-
configJson.put("appInfo", "react-native-0.7.
|
|
40
|
+
configJson.put("appInfo", "react-native-0.7.7");
|
|
41
41
|
|
|
42
42
|
FaciaAi faciaAi = new FaciaAi();
|
|
43
43
|
|
package/facia-mobilesdk.podspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require "json"
|
|
2
2
|
|
|
3
3
|
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
4
|
-
sdk_version = "3.2.
|
|
4
|
+
sdk_version = "3.2.3"
|
|
5
5
|
|
|
6
6
|
Pod::Spec.new do |s|
|
|
7
7
|
s.name = "facia-mobilesdk"
|
|
@@ -18,5 +18,5 @@ Pod::Spec.new do |s|
|
|
|
18
18
|
s.requires_arc = true
|
|
19
19
|
|
|
20
20
|
s.dependency "React-Core"
|
|
21
|
-
s.dependency "Facia", "~> 3.2.
|
|
21
|
+
s.dependency "Facia", "~> 3.2.3"
|
|
22
22
|
end
|
package/ios/MobilesdkModule.m
CHANGED
|
@@ -27,7 +27,7 @@ RCT_EXPORT_METHOD(verify:(NSString *)token config:(NSString *)config callback: (
|
|
|
27
27
|
|
|
28
28
|
NSDictionary *configDict = [self parseJSONString:config];
|
|
29
29
|
NSMutableDictionary *modifiedConfigDict = [configDict mutableCopy];
|
|
30
|
-
modifiedConfigDict[@"platform"] = @"react-native-0.7.
|
|
30
|
+
modifiedConfigDict[@"platform"] = @"react-native-0.7.7";
|
|
31
31
|
|
|
32
32
|
[facia createRequestWithParentViewController:vc
|
|
33
33
|
accessToken:token
|