{"id":15026648,"url":"https://github.com/swiftkitz/appz","last_synced_at":"2025-05-16T09:04:22.068Z","repository":{"id":45455353,"uuid":"45965083","full_name":"SwiftKitz/Appz","owner":"SwiftKitz","description":"📱 Launch external apps, and deeplink, with ease using Swift!","archived":false,"fork":false,"pushed_at":"2021-09-16T16:34:28.000Z","size":61924,"stargazers_count":1183,"open_issues_count":7,"forks_count":77,"subscribers_count":24,"default_branch":"master","last_synced_at":"2025-05-12T05:11:32.995Z","etag":null,"topics":["carthage","cocoapods","deep-linking","ios","swift-3","uiapplication","url","watchos"],"latest_commit_sha":null,"homepage":"https://swiftkitz.github.io/","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SwiftKitz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-11-11T06:57:48.000Z","updated_at":"2025-04-19T06:15:34.000Z","dependencies_parsed_at":"2022-07-14T12:31:00.795Z","dependency_job_id":null,"html_url":"https://github.com/SwiftKitz/Appz","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SwiftKitz%2FAppz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SwiftKitz%2FAppz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SwiftKitz%2FAppz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SwiftKitz%2FAppz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SwiftKitz","download_url":"https://codeload.github.com/SwiftKitz/Appz/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254501557,"owners_count":22081528,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["carthage","cocoapods","deep-linking","ios","swift-3","uiapplication","url","watchos"],"created_at":"2024-09-24T20:04:50.714Z","updated_at":"2025-05-16T09:04:22.043Z","avatar_url":"https://github.com/SwiftKitz.png","language":"Swift","funding_links":["https://paypal.com"],"categories":[],"sub_categories":[],"readme":"\n\u003ch1 align=\"center\"\u003e\n  Appz :iphone:\n  \u003ch6 align=\"center\"\u003e\n    Deeplinking to external applications made easy\n  \u003c/h6\u003e\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"Version\" src=\"https://img.shields.io/badge/version-3.2.0-blue.svg\"/\u003e\n  \u003ca alt=\"Travis CI\" href=\"https://travis-ci.org/SwiftKitz/Appz\"\u003e\n    \u003cimg alt=\"Version\" src=\"https://travis-ci.org/SwiftKitz/Appz.svg?branch=master\"/\u003e\n  \u003c/a\u003e\n  \u003cimg alt=\"Swift\" src=\"https://img.shields.io/badge/swift-5-orange.svg\"/\u003e\n  \u003cimg alt=\"Platforms\" src=\"https://img.shields.io/badge/platform-ios%20%7C%20watchos%20%7C%20tvos-lightgrey.svg\"/\u003e\n  \u003ca alt=\"Carthage Compatible\" href=\"https://github.com/SwiftKitz/Appz#carthage\"\u003e\n    \u003cimg alt=\"Carthage\" src=\"https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat\"/\u003e\n  \u003c/a\u003e\n  \u003cimg alt=\"Supported Apps\" src=\"https://img.shields.io/badge/Apps-172-9600cd.svg\"/\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"resources/Demo.gif\"\u003e\n\u003c/p\u003e\n\n## Highlights\n\n+ __Web Fallback Support:__\u003cbr /\u003e\nIn case the app can't open the external application, it will fall-back to a web URL that is guaranteed to succeed by opening the browser.\n\n+ __Isolated App Specs:__\u003cbr /\u003e\nIt was crucial to make sure the library can scale as the number of supported apps increase. Therefor, each supported app is implemented in isolation in a separate file.\n\n+ __Full Autocomplete Support__:\nThe API has been carefully designed to make the most out of auto complete features, so you don't even have to peak into any docs or code!\n\n+ __Full Testing:__\u003cbr /\u003e\nTo make the specs as transparent as possible, the library has tests to make sure every external application action has tests with the expected results.\n\n## Features\n\nYou can try them in the playground shipped with the framework!\n\n__Concise syntax to trigger deep linking:__\n\n```swift\n\nlet app = UIApplication.shared\napp.canOpen(Applications.Instagram())\napp.open(Applications.AppStore(), action: .account(id: \"395107918\"))\napp.open(Applications.AppSettings(), action: .open)\n```\n\n__Transparent web fallback:__\n\n```swift\n// In case the user doesn't have twitter installed, it will fallback to\n// https://twitter.com/testUser/statuses/2\napp.open(Applications.Twitter(), action: .status(id: \"2\",  screenName: \"testUser\"))\n```\n\n__Add your applications:__\n\n```swift\n// Applications are recommended to be part of the\n// \"Applications\" namespace\nextension Applications {\n    // Define your application as a type that\n    // conforms to \"ExternalApplication\"\n    struct MyApp: ExternalApplication {\n\n        typealias ActionType = Applications.MyApp.Action\n\n        let scheme = \"myapp:\"\n        let fallbackURL = \"\"\n        let appStoreId = \"\"\n    }\n}\n// Then, you define the actions your app supports\nextension Applications.MyApp {\n\n    enum Action: ExternalApplicationAction {\n\n        case open\n\n        // Each action should provide an app path and web path to be\n        // added to the associated URL\n        var paths: ActionPaths {\n\n            switch self {\n            case .open:\n                return ActionPaths()\n            }\n        }\n    }\n}\n\napp.open(Applications.MyApp(), action: .open)\n```\n\n__Supported Apps (for now!):__\n\nApp | Actions\n----|--------\n[AirLaunch][AirLaunch-link] | Open\n[AliExpress][AliExpress-link] | Open\n[AllCast][AllCast-link] | Open\n[AppleMaps][AppleMaps-link] | Open\n[AppSettings][AppSettings-link] | Open\n[AppStore][AppStore-link] | Developer, App, Rate App\n[AppleWatch][AppleWatch-link] | Open\n[Audible][Audible-link] | Open\n[Ayah][Ayah-link] | Open\n[Behance][Behance-link] | Open, UserProfile\n[BNR][BNR-link] | Open\n[Box][Box-link] | Open\n[Buzzfeed][Buzzfeed-link] | Open\n[Calendars5][Calendars5-link] | Open\n[Camera360][Camera360-link] | Open\n[Careem][Careem-link] | Open\n[Chromecast][Chromecast-link] | Open\n[CirclePay][CirclePay-link] | Open, Request, Send\n[Clips][Clips-link] | Open\n[Cnet][Cnet-link] | Open\n[CNN][CNN-link] | Open\n[Currency][Currency-link] | Open\n[DailyMotion][DailyMotion-link] | Open\n[DamaKing][DamaKing-link] | Open\n[DayCost][DayCost-link] | Open\n[DayOne][DayOne-link] | Open\n[Diigo][Diigo-link] | Open\n[Documents][Documents-link] | Open\n[Dropbox][Dropbox-link] | Open\n[Duolingo][Duolingo-link] | Open\n[eBay][eBay-link] | Open\n[Echofon][Echofon-link] | Open\n[Epson][Epson-link] | Open\n[Everypost][Everypost-link] | Open\n[EyeEm][EyeEm-link] | Open\n[Facebook][Facebook-link] | Open, Profile, Notification, Feed, Page, Action\n[FaceTime][FaceTime-link] | Video Call\n[FaceTime audio][FaceTime audio-link] | Audio Call\n[Feedly][Feedly-link] | Open\n[FileApp][FileApp-link] | Open\n[FindFriends][FindFriends-link] | Open\n[FindiPhone][FindiPhone-link] | Open\n[Fitbit][Fitbit-link] | Open\n[Flickr][Flickr-link] | Open\n[Flipboard][Flipboard-link] | Open\n[FlippsTV][FlippsTV-link] | Open\n[Forest][Forest-link] | Open\n[Foursquare][Foursquare-link] | Open\n[FriendlySocial][FriendlySocial-link] | Open\n[Gallery][Gallery-link] | Open\n[Glympse][Glympse-link] | Open\n[GoogleCalendar][GoogleCalendar-link] | Open, CreateEvent\n[GoogleChrome][GoogleChrome-link] | Open\n[GoogleDocs][GoogleDocs-link] | Open\n[GoogleDrive][GoogleDrive-link] | Open\n[GoogleEarth][GoogleEarth-link] | Open\n[GoogleMail][GoogleMail-link] | Open\n[GoogleMaps][GoogleMaps-link] | Open, Display Directions, Display Location, Search\n[GooglePhotos][GooglePhotos-link] | Open\n[GooglePlus][GooglePlus-link] | Open\n[GoogleSheets][GoogleSheets-link] | Open\n[GoogleSlides][GoogleSlides-link] | Open\n[GoogleTranslate][GoogleTranslate-link] | Open\n[GroupeMe][GroupeMe-link] | Open\n[Heapo][Heapo-link] | Open\n[HootSuite][HootSuite-link] | Open\n[iBooks][iBooks-link] | Open\n[IMDb][IMDb-link] | Open, Search, Title, Boxoffice, Showtimes, Feature Coming Soon, Feature Best Picture, Feature Born Today, Top rated movies, Most popular movies.\n[iMovie][iMovie-link] | Open\n[INRIXTraffic][INRIXTraffic-link] | Open\n[Instagram][Instagram-link] | Open, Camera, Library, Media, Username, Location, Tag\n[Instapaper][Instapaper-link] | Open\n[iShows][iShows-link] | Open\n[iTranslate][iTranslate-link] | Open, Translate\n[iTunesU][iTunesU-link] | Open\n[KakaoTalk][KakaoTalk-link] | Open\n[Kayak][Kayak-link] | Open\n[Keeper][Keeper-link] | Open\n[Kik][Kik-link] | Open\n[LastPass][LastPass-link] | Open\n[Line][Line-link] | Open\n[Linkedin][Linkedin-link] | Open\n[Mail][Mail-link] | Compose\n[Marktplaats][Marktplaats-link] | Open\n[Marvis][Marvis-link] | Open\n[Meerkat][Meerkat-link] | Open\n[Messages][Messages-link] | SMS\n[MobileMouse][MobileMouse-link] | Open\n[Mopico][Mopico-link] | Open\n[Moves][Moves-link] | Open\n[Music][Music-link] | Open\n[MyFitnessPal][MyFitnessPal-link] | Open\n[NameShark][NameShark-link] | Open\n[Netflix][Netflix-link] | Open\n[Notes][Notes-link] | Open\n[NPORadio][NPORadio-link] | Open\n[NU.nl][NU.nl-link] | Open\n[NYTimes][NYTimes-link] | Open\n[OneMorething][OneMorething-link] | Open\n[OneDrive][OneDrive-link] | Open\n[OnePassword][OnePassword-link] | Open\n[Outlook][Outlook-link] | Open, Compose\n[Paypal][Paypal-link] | Open\n[Periscope][Periscope-link] | Open\n[Phone][Phone-link] | Open\n[Photos][Photos-link] | Open\n[PicCollage][PicCollage-link] | Open\n[Pinterest][Pinterest-link] | Open, UserProfile, Search\n[Pocket][Pocket-link] | Open\n[Podcasts][Podcasts-link] | Open\n[Quora][Quora-link] | Open\n[Radium][Radium-link] | Open\n[RemindersApp][RemindersApp-link] | Open\n[Remote][Remote-link] | Open\n[Rijnmond][Rijnmond-link] | Open\n[RoboForm][RoboForm-link] | Open\n[RunKeeper][RunKeeper-link] | Open\n[ScannerPro][ScannerPro-link] | Open\n[Simplenote][Simplenote-link] | Open\n[Skitch][Skitch-link] | Open\n[Skype][Skype-link] | Open\n[Slack][Slack-link] | Open, Channel, Direct Message, Open File, Search\n[Snapchat][Snapchat-link] | Open, Add\n[Snapseed][Snapseed-link] | Open\n[Songpop2][Songpop2-link] | Open\n[Sonos][Sonos-link] | Open\n[Soundflake][Soundflake-link] | Open\n[Spark][Spark-link] | Compose\n[StitcherRadio][StitcherRadio-link] | Open\n[Strava][Strava-link] | Open\n[SubwayKorea][SubwayKorea-link] | Open\n[SunriseCalendar][SunriseCalendar-link] | Open\n[Swarm][Swarm-link] | Open\n[Super-Stickman-Golf-2][Super-Stickman-Golf-2-link] | Open\n[Talabat][Talabat-link] | Open\n[Tango][Tango-link] | Open\n[Ted][Ted-link] | Open\n[Telegram][Telegram-link] | Open, SMS, openFromID\n[TestFlight][TestFlight-link] | Open\n[Tinder][Tinder-link] | Open\n[Trello][Trello-link] | Open\n[Tubex][Tubex-link] | Open\n[Tumblr][Tumblr-link] | Open, Dashboard, Explore, Activity, Blog, Tag\n[Tweetbot][Tweetbot-link] | Timeline, Post, Mentions, Lists, Retweets, Favorites, Messages, Status, Search, Profile, Follow, Unfollow, Favorite, Unfavorite, Retweet, List\n[Twitter][Twitter-link] | Status, UserHandle, UserId, List, Post, Search, Timeline, Mentions, Messages\n[Twitterrific][Twitterrific-link] | Open, MentionsView, MessagesView, FavoritesView, Search, TweetID, MessageID, Post, UserProfile\n[Uber][Uber-link] | Open\n[Unread][Unread-link] | Open\n[Ustream][Ustream-link] | Open\n[Viber][Viber-link] | Open Calls Tab, Open Chats Tab\n[Videos][Videos-link] | Open\n[Views][Views-link] | Open\n[Vimeo][Vimeo-link] | Open\n[Vine][Vine-link] | Open, Popular Timelines\n[VIPAccess][VIPAccess-link] | Open\n[Vox][Vox-link] | Open\n[Voxer][Voxer-link] | Open\n[VSCO][VSCO-link] | Open\n[Wallet][Wallet-link] | Open\n[Waze][Waze-link] | Open, NavigateToDirection\n[WeChat][WeChat-link] | Open\n[Weibo][Weibo-link] | Open\n[WhatsApp][WhatsApp-link] | Open\n[Whyd][Whyd-link] | Open\n[Wikipanion][Wikipanion-link] | Open\n[WordPress][WordPress-link] | Open\n[Workflow][Workflow-link] | Open\n[Yammer][Yammer-link] | Open\n[Yelp][Yelp-link] | Open, Search, Search Location, Search Category, Search Category Location, Business\n[Youtube][Youtube-link] | Open, Open Video\n[FRIL][FRIL-link] | Open\n\n## Getting Started\n\n### Configure Info.plist\n\nYou must add the schemes you want to use to your app's info.plist file under `LSApplicationQueriesSchemes`. [See here for more](http://stackoverflow.com/a/30988328/456434).\n\n### Carthage\n\n[Carthage][carthage-link] is fully supported. Simply add the following line to your [Cartfile][cartfile-docs]:\n\n```ruby\ngithub \"SwiftKitz/Appz\"\n```\n\n### Cocoapods\n\n[Cocoapods][cocoapods-link] is fully supported. Simply add the following line to your [Podfile][podfile-docs]:\n\n```ruby\npod 'Appz'\n```\n\n### Submodule\n\nFor manual installation, you can grab the source directly or through git submodules, then simply:\n\n+ Drop the `Appz.xcodeproj` file as a subproject (make sure `Copy resources` is __not__ enabled)\n+ Navigate to your root project settings. Under \"Embedded Binaries\", click the \"+\" button and select the `Appz.framework`\n\n## Motivation\n\nI've gone through way too much pain than I am willing to admit integrating deeplinking in my app. It is very easy to forget calling `canOpenURL` or missing a colon somewhere. Another pain point was savaging the web for all the different specs for different applications.\n\nWith this library, you can keep the external application deep linking spec separately and rest assured as it is open source and maintained by the wonderful github community!\n\n## Author\n\nMazyod ([@Mazyod](http://twitter.com/mazyod))\n\n## Contributors\n\nThis library could not have made it so far without the generous contributions of various developers!\n\n## License\n\nAppz is released under the MIT license. See LICENSE for details.\n\n[carthage-link]: https://github.com/Carthage/Carthage\n[cartfile-docs]: https://github.com/Carthage/Carthage/blob/master/Documentation/Artifacts.md#cartfile\n[cocoapods-link]: https://cocoapods.org/\n[podfile-docs]: https://guides.cocoapods.org/syntax/podfile.html\n[AirLaunch-link]: http://www.iosappdownload.org/download.php?boaID=846864\n[AliExpress-link]: http://www.aliexpress.com\n[AllCast-link]: http://www.allcast.io\n[AppleMaps-link]: https://developer.apple.com/library/ios/featuredarticles/iPhoneURLScheme_Reference/MapLinks/MapLinks.html#//apple_ref/doc/uid/TP40007899-CH5-SW1\n[AppSettings-link]: https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIApplication_Class/index.html#//apple_ref/c/data/UIApplicationOpenSettingsURLString\n[AppStore-link]: https://developer.apple.com/library/ios/qa/qa1633/_index.html\n[AppleWatch-link]: https://www.reddit.com/r/workflow/comments/3mux7h/ios_url_schemes/\n[Audible-link]: http://www.audible.com\n[Ayah-link]: http://ayahapp.com\n[Behance-link]: https://www.behance.net/\n[BNR-link]: http://www.bnr.nl\n[Box-link]: https://www.box.com/business/secure-enterprise-mobility/\n[Buzzfeed-link]: http://www.buzzfeed.com\n[Calendars5-link]: https://readdle.com/products/calendars5\n[Camera360-link]: https://www.camera360.com/production/?production=camera360\u0026platform=ios\n[Careem-link]: https://www.careem.com/dubai/node\n[Chromecast-link]: https://www.google.com/intl/en_us/chromecast/\n[CirclePay-link]: https://itunes.apple.com/app/id920164002\n[Clips-link]: http://www.cleanshavenapps.com/clips/#download\n[Cnet-link]: http://www.cnet.com\n[CNN-link]: http://edition.cnn.com/specials/mobile-apps\n[Currency-link]: http://www.xe.com/apps/iphone/\n[DailyMotion-link]: http://www.dailymotion.com/\n[DamaKing-link]: http://level3.io\n[DayCost-link]: https://www.facebook.com/iDaycost/\n[DayOne-link]: http://dayoneapp.com\n[Diigo-link]: https://www.diigo.com\n[Documents-link]: https://readdle.com/products/documents\n[Dropbox-link]: https://dropbox.com\n[Duolingo-link]: https://www.duolingo.com\n[eBay-link]: http://www.ebay.com\n[Echofon-link]: http://www.echofon.com\n[Epson-link]: https://www.epson.com/cgi-bin/Store/jsp/epson-connect/mobile-printing/iprint-app.do\n[Everypost-link]: http://everypost.me\n[EyeEm-link]: http://pic-collage.com\n[Facebook-link]: https://facebook.com\n[FaceTime-link]:https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/FacetimeLinks/FacetimeLinks.html#//apple_ref/doc/uid/TP40007899-CH2-SW1\n[FaceTime audio-link]: https://developer.apple.com/library/content/featuredarticles/iPhoneURLScheme_Reference/FacetimeLinks/FacetimeLinks.html#//apple_ref/doc/uid/TP40007899-CH2-SW1\n[Feedly-link]: http://feedly.com/i/welcome\n[FileApp-link]: http://fileapp.com\n[FindFriends-link]: http://handleopenurl.com/scheme/find-my-friends\n[FindiPhone-link]: https://itunes.apple.com/us/app/find-my-iphone/id376101648?mt=8\n[Fitbit-link]: https://www.fitbit.com/app\n[Flickr-link]: https://www.flickr.com\n[Flipboard-link]: https://flipboard.com\n[FlippsTV-link]: http://www.flipps.com\n[Forest-link]: https://www.forestapp.cc/en/\n[Foursquare-link]: https://foursquare.com/download\n[FriendlySocial-link]: http://friendly.io/#ios\n[Gallery-link]: https://www.reddit.com/r/workflow/comments/3mux7h/ios_url_schemes/\n[Glympse-link]: https://glympse.com/get-glympse\n[GoogleCalendar-link]: https://forums.macrumors.com/threads/ios-8-widget-customisations-using-launcher.1782093/\n[GoogleChrome-link]: https://www.google.com/chrome/\n[GoogleDocs-link]: http://www.google.com/docs/about/\n[GoogleDrive-link]: https://www.google.com/drive/\n[GoogleEarth-link]: https://www.google.com/earth\n[GoogleMail-link]: https://mail.google.com\n[GoogleMaps-link]: https://maps.google.com\n[GooglePhotos-link]: https://www.google.com/photos/about/\n[GooglePlus-link]: https://plus.google.com\n[GoogleSheets-link]: http://www.google.com/sheets/about/\n[GoogleSlides-link]: http://www.google.com/slides/about/\n[GoogleTranslate-link]: https://translate.google.com/about/intl/en_ALL/index.html\n[GroupeMe-link]: https://groupme.com\n[Heapo-link]: https://itunes.apple.com/us/app/heapo-clipboard-management-widget-copy-paste-clips/id921961118?mt=8\n[HootSuite-link]: https://hootsuite.com/products/mobile-apps/hootsuite-mobile-app\n[iBooks-link]: https://itunes.apple.com/us/app/ibooks/id364709193?mt=8\n[IMDb-link]: http://www.imdb.com\n[iMovie-link]: https://itunes.apple.com/us/app/imovie/id377298193?mt=8\n[INRIXTraffic-link]: http://inrix.com/inrix-traffic-app\n[Instagram-link]: https://instagram.com\n[Instapaper-link]: https://www.instapaper.com/iphone\n[iShows-link]: http://ishowsapp.com\n[iTranslate-link]: http://itranslateapp.com\n[iTunesU-link]: https://launchcenterpro.com/dzvk6r\n[KakaoTalk-link]: http://www.kakao.com/talk\n[Kayak-link]: https://www.kayak.ae/\n[Keeper-link]: https://keepersecurity.com/\n[Kik-link]: http://www.kik.com\n[LastPass-link]: https://lastpass.com\n[Line-link]: http://line.me/\n[Linkedin-link]: http://www.linkedin.com/\n[Mail-link]: https://developer.apple.com/library/ios/featuredarticles/iPhoneURLScheme_Reference/MailLinks/MailLinks.html#//apple_ref/doc/uid/TP40007899-CH4-SW1\n[Marktplaats-link]: http://www.marktplaats.nl\n[Marvis-link]: https://appaddy.wix.com/marvis\n[Meerkat-link]: http://meerkatapp.co\n[Messages-link]: https://developer.apple.com/library/ios/featuredarticles/iPhoneURLScheme_Reference/SMSLinks/SMSLinks.html#//apple_ref/doc/uid/TP40007899-CH7-SW1\n[MobileMouse-link]: http://www.mobilemouse.com\n[Mopico-link]: http://mo-pi-co.com\n[Moves-link]: https://www.moves-app.com\n[Music-link]: https://www.reddit.com/r/workflow/comments/3mux7h/ios_url_schemes/\n[MyFitnessPal-link]: https://www.myfitnesspal.com\n[NameShark-link]: http://www.namesharkapp.com\n[Netflix-link]: https://www.netflix.com\n[Notes-link]: https://www.reddit.com/r/workflow/comments/3mux7h/ios_url_schemes/\n[NPORadio-link]: http://forums.macrumors.com/threads/ios-8-widget-customisations-using-launcher.1782093/\n[NU.nl-link]: http://www.nu.nl\n[NYTimes-link]: http://www.nytimes.com/services/mobile/index.html\n[OneMorething-link]: http://www.onemorething.nl\n[OneDrive-link]: https://onedrive.live.com/\n[OnePassword-link]: https://agilebits.com/onepassword\n[Outlook-link]: http://www.outlook.com/\n[Paypal-link]: https://paypal.com\n[Periscope-link]: https://www.periscope.tv\n[Phone-link]: https://developer.apple.com/library/ios/featuredarticles/iPhoneURLScheme_Reference/PhoneLinks/PhoneLinks.html\n[Photos-link]: https://www.reddit.com/r/workflow/comments/3mux7h/ios_url_schemes/\n[PicCollage-link]: http://pic-collage.com\n[Pinterest-link]: https://www.pinterest.com\n[Pocket-link]: https://getpocket.com/ios/?ep=1\n[Podcasts-link]: https://itunes.apple.com/us/app/podcasts/id525463029?mt=8\n[Quora-link]: https://www.quora.com\n[Radium-link]: http://catpigstudios.com\n[RemindersApp-link]: https://www.reddit.com/r/workflow/comments/3mux7h/ios_url_schemes/\n[Remote-link]: https://www.reddit.com/r/workflow/comments/3mux7h/ios_url_schemes/\n[Rijnmond-link]: http://www.rijnmond.nl\n[RoboForm-link]: http://www.roboform.com/for-iphone-ipad-ios\n[RunKeeper-link]: https://runkeeper.com/index\n[ScannerPro-link]: https://readdle.com/products/scannerpro/\n[Simplenote-link]: http://simplenote.com\n[Skitch-link]: https://evernote.com/skitch/\n[Skype-link]: http://www.skype.com/\n[Slack-link]: https://api.slack.com/docs/deep-linking#open_slack\n[Snapchat-link]: https://www.snapchat.com\n[Snapseed-link]: https://support.google.com/snapseed/#topic=6155507\n[Songpop2-link]: https://www.songpop2.com\n[Sonos-link]: http://www.sonos.com/\n[Soundflake-link]: http://soundflakeapp.com\n[Spark-link]: https://readdle.com/products/spark\n[StitcherRadio-link]: http://www.stitcher.com\n[Strava-link]: http://www.strava.com/mobile\n[SubwayKorea-link]: http://blog.malangstudio.com\n[SunriseCalendar-link]: https://calendar.sunrise.am\n[Swarm-link]: https://www.swarmapp.com\n[Super-Stickman-Golf-2-link]: http://www.noodlecake.com/games/super-stickman-golf-2/\n[Talabat-link]: https://www.talabat.com\n[Tango-link]: http://www.tango.me\n[Ted-link]: https://www.ted.com\n[Telegram-link]: https://web.telegram.org\n[TestFlight-link]: http://stackoverflow.com/questions/26667467/opening-testflight-app-from-another-app-and-deep-link-to-specific-app\n[Tinder-link]: https://www.gotinder.com\n[Trello-link]: https://trello.com/\n[Tubex-link]: https://www.facebook.com/Tubex-744986562245828/\n[Tumblr-link]: https://www.tumblr.com\n[Tweetbot-link]: http://tapbots.com/tweetbot\n[Twitter-link]: https://twitter.com\n[Twitterrific-link]: http://twitterrific.com/ios/poweruser\n[Uber-link]: https://www.uber.com\n[Unread-link]: http://supertop.co/unread/\n[Ustream-link]: https://www.ustream.tv/platform/watch-everywhere\n[Viber-link]: http://www.viber.com\n[Videos-link]: https://www.reddit.com/r/workflow/comments/3mux7h/ios_url_schemes/\n[Views-link]: http://www.saikambampati.com/views\n[Vimeo-link]: https://vimeo.com/everywhere\n[Vine-link]: https://vine.co\n[VIPAccess-link]: https://m.vip.symantec.com\n[Vox-link]: http://coppertino.com/vox/iphone\n[Voxer-link]: http://www.voxer.com\n[VSCO-link]: http://vsco.co/store/app\n[Wallet-link]: https://support.apple.com/en-us/HT204003\n[Waze-link]: https://www.waze.com\n[WeChat-link]: http://forums.macrumors.com/threads/ios-8-widget-customisations-using-launcher.1782093/\n[Weibo-link]: http://weibo.com/login.php\n[WhatsApp-link]: https://www.whatsapp.com\n[Whyd-link]: http://whyd.com\n[Wikipanion-link]: http://www.wikipanion.com/download.html?iphone\n[WordPress-link]: https://apps.wordpress.org\n[Workflow-link]: https://workflow.is\n[YahooWeather-link]: https://mobile.yahoo.com/weather/\n[Yammer-link]: https://products.office.com/en-us/yammer/yammer-mobile-app\n[Yelp-link]: https://m.yelp.com\n[Youtube-link]: https://youtube.com\n[FRIL-link]: https://fril.jp\n[v2.1.1-link]: https://github.com/SwiftKitz/Appz/releases/tag/v2.1.1\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswiftkitz%2Fappz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fswiftkitz%2Fappz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswiftkitz%2Fappz/lists"}