-
Notifications
You must be signed in to change notification settings - Fork 24.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Linking examples in rn-tester (#30547)
Summary: Added examples to RNTester for the Linking API. ## Changelog [General] [Added] - Added example for openSettings() for Linking API. [General] [Added] - Added [LSApplicationQueriesSchemes](https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW14) in info.plist with entries tel, telprompt, http, fb, geo Pull Request resolved: #30547 Test Plan: ![Screen Recording 2020-12-07 at 11 19 13 PM (1)](https://user-images.githubusercontent.com/16796008/102250807-05001580-3f2a-11eb-9ce0-58de4d6fca54.gif) Reviewed By: yungsters Differential Revision: D30559457 Pulled By: lunaleaps fbshipit-source-id: dba2721a9905ddb9ddd2b14141e5553bdf8880da
- Loading branch information
1 parent
ac4ddec
commit b26f277
Showing
2 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tel
,telprompt
,http
andgeo
are all already OS supported. They do not need to be added to theLSApplicationQueriesSchemes
and doing so might hide regressions.The
http
(andhttps
) schemes can stay because there is a bug in iOS 14.0 through 14.3 that requires they be present, but the others (exceptfb
) should be removed (and tested to confirm).CC @TheSavior