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
+21-16Lines changed: 21 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ This guide will walk you through adding Shine to your iOS application.
6
6
##Getting started##
7
7
8
8
9
-
To begin using Shine you will need to acquire your unique application key. Currently these applications keys are given out on an ad-hoc basis by Soundwave. Please contact Soundwave if you have not received your key or would like to enquire about receiving a key.
9
+
To begin using Shine you will need to acquire your unique application key. Currently these applications keys are given out on an ad-hoc basis by Soundwave. Please contact [Soundwave](mailto:brendan@soundwave.com) if you have not received your key or would like to enquire about receiving a key.
10
10
11
11
Check out the example Shine app above for help getting started.
12
12
@@ -15,42 +15,42 @@ Check out the example Shine app above for help getting started.
15
15
Shine SDK requires iOS 7.1+
16
16
17
17
###Cocoapods Installation###
18
-
Shine can be installed using [Cocoapods](http://cocoapods.org). Simple add the following to your Podfile and run _pod install_.
18
+
Shine can be installed using [Cocoapods](http://cocoapods.org). Simple add the following to your Podfile and run `pod install`.
19
19
```bash
20
20
21
-
pod 'Shine', '~>1.0'
21
+
pod 'Shine', '~>1.1'
22
22
```
23
23
24
24
###Manual Installation###
25
25
26
-
Shine SDK needs to be installed manually.
26
+
Shine SDK can also be installed manually.
27
27
28
-
1. Download the latest shine from [Github](https://github.com/SoundwaveApp/Shine-iOS/tree/master/Shine.framework)
28
+
1. Download the latest Shine framework from the root folder of this repository.
29
29
2. Drag Shine.framework into your Xcode project, ticking the “Copy items if needed” checkbox.
30
30
31
31
**Add Other Linker Flag**
32
32
33
33
3. Select your Xcode project in the file navigator sidebar.
34
-
4.Select your project, then it’s “Build Settings" Tab.
34
+
4.In the main pane, select your project, and then go to the “Build Settings" Tab.
35
35
5. Search for “Other Linker Flags”.
36
36
6. Double click the “Other Linker Flags” row’s value area, on the right side. A pop-up should appear.
37
37
7. Add “-ObjC” by pressing the + button if it is hasn’t already been added
* Add the following to your method `willFinishLaunchingWithOptions`. At this point you will need to provide your unique application key which is available by contacting Soundwave.
53
+
* Add the following to your method `willFinishLaunchingWithOptions`. At this point you will need to provide your unique application key which is available by contacting [Soundwave](mailto:brendan@soundwave.com).
54
54
55
55
```objective-c
56
56
@@ -63,7 +63,7 @@ To begin using shine follow these steps:
63
63
Once you have added this code, Shine will start capturing data once your app launches.
64
64
65
65
66
-
#User Registration#
66
+
##User Registration##
67
67
68
68
69
69
You can capture user registration data by adding the following code to your app:
0 commit comments