https://github.com/simplisticated/peripheral
The way to launch apps on iOS.
https://github.com/simplisticated/peripheral
Last synced: 12 months ago
JSON representation
The way to launch apps on iOS.
- Host: GitHub
- URL: https://github.com/simplisticated/peripheral
- Owner: simplisticated
- License: mit
- Created: 2016-02-20T04:28:31.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-16T16:57:18.000Z (about 9 years ago)
- Last Synced: 2025-03-10T09:42:05.748Z (about 1 year ago)
- Language: Swift
- Size: 42 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Peripheral
The way to launch apps on iOS.
## How To Get Started
- Copy content of `Source` folder to your project.
or
- Use `Peripheral` cocoapod
## Requirements
* iOS 8 and later
* Xcode 7 and later
## Usage
Launching apps with `Peripheral` is incredibly easy. Just look at this:
```swift
/*
* Launch Skype
*/
Peripheral.Skype.launchApp()
/*
* Launch Twitter
*/
Peripheral.Twitter.launchApp()
```
## Supported Apps
Here is a list of currently supported apps:
* Skype
* Twitter
This list will be constantly expanding.
## Note
If you are planning to use `Peripheral` on iOS 9 and later versions, don't forget to create `LSApplicationQueriesSchemes` array in `.plist` file and put there all application URL schemes which you are going to use with `Peripheral` framework. Details: https://developer.apple.com/library/ios/documentation/General/Reference/InfoPlistKeyReference/Articles/LaunchServicesKeys.html#//apple_ref/doc/uid/TP40009250-SW14
## License
`Peripheral` is available under the MIT license. See the `LICENSE` file for more info.