react-native-share 7.6.0 → 7.6.1
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/ios/FacebookStories.m +1 -1
- package/ios/InstagramStories.m +1 -1
- package/ios/WhatsAppShare.m +1 -1
- package/package.json +1 -1
package/ios/FacebookStories.m
CHANGED
|
@@ -83,7 +83,7 @@ RCT_EXPORT_MODULE();
|
|
|
83
83
|
|
|
84
84
|
- (void)fallbackFacebook {
|
|
85
85
|
// Cannot open facebook
|
|
86
|
-
NSString *stringURL = @"
|
|
86
|
+
NSString *stringURL = @"https://itunes.apple.com/app/facebook/id284882215";
|
|
87
87
|
NSURL *url = [NSURL URLWithString:stringURL];
|
|
88
88
|
[[UIApplication sharedApplication] openURL:url];
|
|
89
89
|
|
package/ios/InstagramStories.m
CHANGED
|
@@ -80,7 +80,7 @@ RCT_EXPORT_MODULE();
|
|
|
80
80
|
|
|
81
81
|
- (void)fallbackInstagram {
|
|
82
82
|
// Cannot open instagram
|
|
83
|
-
NSString *stringURL = @"
|
|
83
|
+
NSString *stringURL = @"https://itunes.apple.com/app/instagram/id389801252";
|
|
84
84
|
NSURL *url = [NSURL URLWithString:stringURL];
|
|
85
85
|
[[UIApplication sharedApplication] openURL:url];
|
|
86
86
|
|
package/ios/WhatsAppShare.m
CHANGED
|
@@ -26,7 +26,7 @@ RCT_EXPORT_MODULE();
|
|
|
26
26
|
NSLog(@"WhatsApp installed");
|
|
27
27
|
} else {
|
|
28
28
|
// Cannot open whatsapp
|
|
29
|
-
NSString *stringURL = @"
|
|
29
|
+
NSString *stringURL = @"https://itunes.apple.com/app/whatsapp-messenger/id310633997";
|
|
30
30
|
NSURL *url = [NSURL URLWithString:stringURL];
|
|
31
31
|
[[UIApplication sharedApplication] openURL:url];
|
|
32
32
|
|
package/package.json
CHANGED