You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,22 @@ Thunder Basics is a set of useful utilities for handling basic iOS development t
6
6
7
7
# Installation
8
8
9
-
Setting up your app to use Thunder Basics is a simple and quick process. For now Thunder Basics is built as a static framework, meaning you will need to include the whole Xcode project in your workspace.
9
+
Setting up your app to use ThunderBasics is a simple and quick process. You can choose between a manual installation, or use Carthage.
10
+
11
+
## Carthage
12
+
13
+
- Add `github "3sidedcube/ThunderBasics" == 1.7.0` to your Cartfile.
14
+
- Run `carthage update --platform ios` to fetch the framework.
15
+
- Drag `ThunderBasics` into your project's _Linked Frameworks and Libraries_ section from the `Carthage/Build` folder.
16
+
- Add the Build Phases script step as defined [here](https://github.com/Carthage/Carthage#if-youre-building-for-ios-tvos-or-watchos).
17
+
18
+
## Manual
19
+
20
+
- Clone as a submodule, or download this repo
21
+
- Import ThunderBasics.xcproject into your project
22
+
- Add ThunderBasics.framework to your Embedded Binaries.
23
+
- Wherever you want to use ThunderBasics use `import ThunderBasics` if you're using swift.
10
24
11
-
+ Import ThunderBasics.xcproject into your project
12
-
+ Add ThunderBasics.framework to your Embedded Binaries.
13
-
+ Wherever you want to use ThunderBasics use `import ThunderBasics` if you're using swift.
0 commit comments