├── .gitignore ├── Arduino-Logo.png ├── BeagleBoneBlack-Logo.png ├── LICENSE ├── README.md ├── RaspberryPi-Logo.png ├── app.json ├── apple-app-site-association ├── arduino.html ├── beaglebone.html ├── composer.json ├── home.html ├── index.php ├── raspberrypi.html └── universal-links.html /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## Build generated 6 | build/ 7 | DerivedData 8 | 9 | ## Various settings 10 | *.pbxuser 11 | !default.pbxuser 12 | *.mode1v3 13 | !default.mode1v3 14 | *.mode2v3 15 | !default.mode2v3 16 | *.perspectivev3 17 | !default.perspectivev3 18 | xcuserdata 19 | 20 | ## Other 21 | *.xccheckout 22 | *.moved-aside 23 | *.xcuserstate 24 | *.xcscmblueprint 25 | 26 | ## Obj-C/Swift specific 27 | *.hmap 28 | *.ipa 29 | 30 | ## Playgrounds 31 | timeline.xctimeline 32 | playground.xcworkspace 33 | 34 | # Swift Package Manager 35 | # 36 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 37 | # Packages/ 38 | .build/ 39 | 40 | # CocoaPods 41 | # 42 | # We recommend against adding the Pods directory to your .gitignore. However 43 | # you should judge for yourself, the pros and cons are mentioned at: 44 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 45 | # 46 | # Pods/ 47 | 48 | # Carthage 49 | # 50 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 51 | # Carthage/Checkouts 52 | 53 | Carthage/Build 54 | 55 | # fastlane 56 | # 57 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 58 | # screenshots whenever they are needed. 59 | # For more information about the recommended setup visit: 60 | # https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md 61 | 62 | fastlane/report.xml 63 | fastlane/screenshots 64 | -------------------------------------------------------------------------------- /Arduino-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/universal-links/ca40abc3d7aad782a10a85a58742d420bcfaa720/Arduino-Logo.png -------------------------------------------------------------------------------- /BeagleBoneBlack-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/universal-links/ca40abc3d7aad782a10a85a58742d420bcfaa720/BeagleBoneBlack-Logo.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Universal Links 2 | 3 | This repo contains the **Single Board Computer** website app developed for the **iOS 9 Universal Links** tutorial. 4 | 5 | ## Deployment 6 | 7 | You can easily deploy your own version of the web app for free to Heroku by clicking one of the following buttons: 8 | 9 | | Starter | Final | 10 | |---------|-------| 11 | | [](https://heroku.com/deploy?template=https://github.com/raywenderlich/universal-links/tree/starter) | [](https://heroku.com/deploy?template=https://github.com/raywenderlich/universal-links/tree/final) | 12 | -------------------------------------------------------------------------------- /RaspberryPi-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kodecocodes/universal-links/ca40abc3d7aad782a10a85a58742d420bcfaa720/RaspberryPi-Logo.png -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Single Board Computers", 3 | "description": "A barebones ingle Board Computers app", 4 | "repository": "https://git.heroku.com/rw-universal-links.git", 5 | "logo": "https://rw-universal-links.herokuapp.com/logo.png", 6 | "keywords": ["SBC", "universal links"] 7 | } -------------------------------------------------------------------------------- /apple-app-site-association: -------------------------------------------------------------------------------- 1 | { 2 | "applinks": { 3 | "apps": [], 4 | "details": [ 5 | { 6 | "appID": "KFCNEC27GU.com.razeware.UniveralLinksTutorial", 7 | "paths": [ "*"] 8 | } 9 | ] 10 | } 11 | } -------------------------------------------------------------------------------- /arduino.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |RW Tutorial: Universal Links
310 |
311 | Arduino is an open-source electronics platform based on easy-to-use hardware and software. It's intended for anyone making interactive projects.
314 | 315 | 316 | 317 | 318 | 319 | -------------------------------------------------------------------------------- /beaglebone.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |RW Tutorial: Universal Links
310 |
311 | BeagleBone Black is a low-cost, community-supported development platform for developers and hobbyists. Boot Linux in under 10 seconds and get started on development in less than 5 minutes with just a single USB cable.
316 | 317 | 318 | 319 | 320 | 321 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /home.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |RW Tutorial: Universal Links
310 |
311 | Arduino is an open-source electronics platform based on easy-to-use hardware and software. It's intended for anyone making interactive projects.
316 | 317 |The Raspberry Pi 2 single computer board is the latest upgrade from the Raspberry Pi Foundation and can help you learn about programming and computing or create exciting, innovative projects. The Pi 2 B also has the processing power to create Internet of Things (IoT) projects.
322 | 323 |BeagleBone Black is a low-cost, community-supported development platform for developers and hobbyists. Boot Linux in under 10 seconds and get started on development in less than 5 minutes with just a single USB cable. 328 |
329 | 330 | 331 | 332 | 333 | 334 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raspberrypi.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |RW Tutorial: Universal Links
310 |
311 | The Raspberry Pi 2 B single computer board is the latest upgrade from the Raspberry Pi Foundation and can help you learn about programming and computing or create exciting, innovative projects. The Pi 2 B also has the processing power to create Internet of Things (IoT) projects.
314 | 315 | 316 | 317 | 318 | 319 | -------------------------------------------------------------------------------- /universal-links.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |RW Tutorial: Universal Links
310 |
311 | Arduino is an open-source electronics platform based on easy-to-use hardware and software. It's intended for anyone making interactive projects.
316 | 317 |The Raspberry Pi 2 B single computer board is the latest upgrade from the Raspberry Pi Foundation and can help you learn about programming and computing or create exciting, innovative projects. The Pi 2 B also has the processing power to create Internet of Things (IoT) projects.
322 | 323 |BeagleBone Black is a low-cost, community-supported development platform for developers and hobbyists. Boot Linux in under 10 seconds and get started on development in less than 5 minutes with just a single USB cable.
328 | 329 | 330 | 331 | 332 | 333 | --------------------------------------------------------------------------------