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
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,23 @@ Create and update your Mailchimp contacts from your Android app. The Mailchimp S
20
20
21
21
Coming Soon
22
22
23
+
### Adding The Mailchimp SDK to your Project
24
+
25
+
First, add https://jitpack.io to your list of maven repositories if it's not already present. Ex. This is an list of Gradle repositories that contains jitpack
26
+
27
+
```gradle
28
+
repositories {
29
+
mavenCentral()
30
+
maven { url 'https://jitpack.io' } // <-- New repository
31
+
}
32
+
```
33
+
34
+
Next add the Mailchimp SDK to your list of dependencies. Below is a gradle example
0 commit comments