react-native-mytatva-rn-sdk 1.2.40 → 1.2.41
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.
|
@@ -138,7 +138,7 @@ RCT_EXPORT_METHOD(reconnectCgmTracky:(NSString *)token)
|
|
|
138
138
|
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainCGM" bundle:[NSBundle mainBundle]];
|
|
139
139
|
|
|
140
140
|
// Instantiate the target ViewController
|
|
141
|
-
UIViewController *reconnectVC = [storyboard instantiateViewControllerWithIdentifier:@"
|
|
141
|
+
UIViewController *reconnectVC = [storyboard instantiateViewControllerWithIdentifier:@"StartConnectionViewController"];
|
|
142
142
|
|
|
143
143
|
// Set presentation style
|
|
144
144
|
reconnectVC.modalPresentationStyle = UIModalPresentationOverFullScreen;
|
package/ios/Support/Global.swift
CHANGED
|
@@ -15,7 +15,8 @@ enum Enum_stroyboard: String {
|
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
var watchCGMVideo = "https://www.youtube.com/embed/r5Zemc4R044?si=RPvayD39VzsZuXsA"
|
|
18
|
-
var applyingTheSensor = "https://www.youtube.com/embed/
|
|
18
|
+
var applyingTheSensor = "https://www.youtube.com/embed/O01BBxzxGmE?si=SblmJ14boqu7Y4qM"
|
|
19
|
+
var applyingTheTransmitter = "https://www.youtube.com/embed/6m3pxl5BK9A?si=08OGnUJf2BdvAYfd"
|
|
19
20
|
var connectionJourneyError = "https://www.youtube.com/embed/mVMBdUeTlhc?si=ODZSiDW96UqyFiZb"
|
|
20
21
|
var qrScanFailed = "https://www.youtube.com/embed/zRlFFdr-QD4?si=hjq4fQDysfkTOPLh"
|
|
21
22
|
|
|
@@ -125,7 +125,7 @@ extension AttachTransmitterViewController: UITableViewDelegate, UITableViewDataS
|
|
|
125
125
|
cell.onPlayVideo = {
|
|
126
126
|
let webVC = WebViewController()
|
|
127
127
|
webVC.modalPresentationStyle = .formSheet
|
|
128
|
-
webVC.videoURL = URL(string:
|
|
128
|
+
webVC.videoURL = URL(string: applyingTheTransmitter)
|
|
129
129
|
self.present(webVC, animated: true, completion: nil)
|
|
130
130
|
}
|
|
131
131
|
return cell
|