⚠ As of version 7 of R.swift, this separate library is no longer needed. R.swift is now a self contained library.
This repository remains for older versions of R.swift.
Regular users probably want to include this library to use R.swift. Developers of other libraries can use this library to extend upon the types and code R.swift generates and uses.
Be aware: If you just want to use R.swift follow the installation instructions for R.swift.
- Add
pod 'R.swift.Library'
to your Podfile - Run
pod install
- Add
github "mac-cain13/R.swift.Library"
to your Cartfile - Run
carthage
- Open your Xcode project.
- Select
File > Swift Packages > Add Package Dependency...
- Paste
https://github.com/mac-cain13/R.swift.Library
to the text field and click on theNext
button. - Choose appropriate version and click on the
Next
button. (If you need latest one, just click on theNext
button.) - Confirm that
Rswift
in the Package Product column is checked and your app's name is selected in the Add to Target column. - Click on the
Next
button.
As an embedded framework using git submodules.
- If your project is not yet a git repository, run
git init
- Add R.swift.Library as a submodule by running:
git submodule add https://github.com/mac-cain13/R.swift.Library.git
- Open the new
R.swift.Library
folder, and drag theR.swift.Library.xcodeproj
into the Project Navigator of your application's Xcode project. - Select the
R.swift.Library.xcodeproj
in the Project Navigator and verify the deployment target matches that of your application target. - Select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar.
- In the tab bar at the top of that window, open the "General" panel.
- Click on the
- Choose the
Rswift.framework
The
Rswift.framework
is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device.
R.swift and R.swift.Library are created by Mathijs Kadijk and released under a MIT License.