Skip to content

Commit b71fb47

Browse files
author
markzegarelli
authored
grammar style, added a note [netlify-ignore]
1 parent 59307e8 commit b71fb47

File tree

1 file changed

+8
-3
lines changed
  • src/connections/destinations/catalog/adobe-analytics

1 file changed

+8
-3
lines changed

src/connections/destinations/catalog/adobe-analytics/mobile.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,27 @@ Before you start sending data from your mobile application to Adobe Analytics, y
2121
> **Tip**: Mobile implementations use the `ADBMobileConfig.json` file to store the settings that you would otherwise enter in the Adobe Analytics destination settings in the Segment app. You can change these settings from the Manage App Settings tab in your Adobe Mobile Services dashboard, and can download the file from that same tab. This file includes the Report Suite ID, Timestamp Option, Tracking Server Secure URL, Tracking Server URL, and Use Secure URL for Server-side settings.
2222
2323
#### For Android
24+
2425
```java
2526
compile 'com.segment.analytics.android.integrations:adobeanalytics:+'
2627
```
2728

28-
After adding the dependency, you must register the integration with our SDK. To do this, import the Amplitude integration:
29+
After you add the dependency, register the integration with the Segment SDK. To do this, import the Amplitude integration:
30+
2931
```java
3032
import com.segment.analytics.android.integrations.adobeanalytics.AdobeIntegration;
3133
```
3234

33-
And add the following line:
35+
Then add the following line:
36+
3437
```java
3538
analytics = new Analytics.Builder(this, "write_key")
3639
.use(AdobeIntegration.FACTORY)
3740
.build();
3841
```
3942

40-
**Note:** If you're working on Android, you'll also need to add these permissions to your `AndroidManifest.xml`:
43+
> info ""
44+
> **Note:** If you're working on Android, be sure to add these permissions to your `AndroidManifest.xml`:
4145
4246
```xml
4347
<uses-permission android:name="android.permission.INTERNET" />
@@ -47,6 +51,7 @@ analytics = new Analytics.Builder(this, "write_key")
4751
You can see the [Android SDK changelog](https://github.com/segment-integrations/analytics-android-integration-adobe-analytics/blob/master/CHANGELOG.md) in the open-source repository for information about specific versions of the Android Adobe Analytics SDK.
4852

4953
#### For iOS
54+
5055
```objc
5156
pod 'Segment-Adobe-Analytics'
5257
```

0 commit comments

Comments
 (0)