Skip to content

Commit 87a30bc

Browse files
committed
Reword deep linking section in Readme
1 parent 23c46aa commit 87a30bc

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

README.md

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -257,16 +257,17 @@ The delegate function will get called every time any activity was tracked or
257257
failed to track. Within the delegate function you have access to the
258258
`responseData` parameter. Here is a quick summary of its attributes:
259259

260-
- `AIActivityKind activityKind` indicates what kind of activity
261-
was tracked. It has one of these values:
260+
- `AIActivityKind activityKind` indicates what kind of activity was tracked. It
261+
has one of these values:
262262

263263
```
264264
AIActivityKindSession
265265
AIActivityKindEvent
266266
AIActivityKindRevenue
267267
```
268268
269-
- `NSString activityKindString` human readable version of the activity kind. Possible values:
269+
- `NSString activityKindString` human readable version of the activity kind.
270+
Possible values:
270271
271272
```
272273
session
@@ -298,26 +299,31 @@ in the `didFinishLaunching` method of your Application Delegate:
298299

299300
### 10. Disable tracking
300301

301-
You can disable the adjust SDK from tracking by invoking the method `setEnabled`
302-
with the enabled parameter as `NO`. This setting is remembered between sessions, but it can only
303-
be activated after the first session.
302+
You can disable the adjust SDK from tracking by invoking the method
303+
`setEnabled` with the enabled parameter as `NO`. This setting is remembered
304+
between sessions, but it can only be activated after the first session.
304305

305306
```objc
306307
[Adjust setEnabled:NO];
307308
```
308309
309-
You can verify if the adjust SDK is currently active with the method `isEnabled`. It is always possible
310-
to activate the adjust SDK by invoking `setEnabled` with the enabled parameter as `YES`.
310+
You can verify if the adjust SDK is currently active with the method
311+
`isEnabled`. It is always possible to activate the adjust SDK by invoking
312+
`setEnabled` with the enabled parameter as `YES`.
311313
312314
### 11. Handle deep linking
313315
314-
You can also set up the adjust sdk to read deep links that come to your app, also known as custom URL schemes in iOS. We will read only the data that is injected by adjust when you use deep links with adjust tracker URLs. This is a core feature if you are planning to run retargeting or re-engagement campaigns with deep links.
316+
You can also set up the adjust SDK to read deep links that come to your app,
317+
also known as custom URL schemes in iOS. We will only read the data that is
318+
injected by adjust tracker URLs. This is essential if you are planning to run
319+
retargeting or re-engagement campaigns with deep links.
315320
316-
In the Project Navigator open the source file your Application Delegate. Find or add the method `openURL` and add the following call to adjust:
321+
In the Project Navigator open the source file your Application Delegate. Find
322+
or add the method `openURL` and add the following call to adjust:
317323
318324
```objc
319-
- (BOOL) application:(UIApplication *)application openURL:(NSURL *)url
320-
sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
325+
- (BOOL) application:(UIApplication *)application openURL:(NSURL *)url
326+
sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
321327
{
322328
[Adjust appWillOpenUrl:url];
323329
}
@@ -338,7 +344,7 @@ In the Project Navigator open the source file your Application Delegate. Find or
338344

339345
## License
340346

341-
The adjust-sdk is licensed under the MIT License.
347+
The adjust-SDK is licensed under the MIT License.
342348

343349
Copyright (c) 2012-2013 adeven GmbH,
344350
http://www.adeven.com

0 commit comments

Comments
 (0)