Skip to content

Commit 91fb3ac

Browse files
committed
LIBMOBILE-1188
- changes in README.md
1 parent 28f39e7 commit 91fb3ac

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,29 @@ Or the following for Kotlin DSL
1515
implementation("com.segment.analytics.kotlin.destinations:nielsen-dtvr:<latest_version>")
1616
```
1717

18+
Also add the Maven Nielsen Digital SDK repo (since Nielsen doesn’t publish it on Maven Central) inside repositories section in project level build.gradle.
19+
```
20+
allprojects {
21+
repositories {
22+
mavenCentral()
23+
maven {
24+
url 'https://raw.githubusercontent.com/NielsenDigitalSDK/nielsenappsdk-android/master/'
25+
}
26+
}
27+
}
28+
```
29+
Or the following for Kotlin DSL
30+
```
31+
allprojects {
32+
repositories {
33+
mavenCentral()
34+
maven {
35+
url = uri("https://raw.githubusercontent.com/NielsenDigitalSDK/nielsenappsdk-android/master/")
36+
}
37+
}
38+
}
39+
40+
```
1841

1942
## Using the Plugin in your App
2043

0 commit comments

Comments
 (0)