diff --git a/README.md b/README.md
index 6b3e4e8..2508ceb 100644
--- a/README.md
+++ b/README.md
@@ -31,6 +31,55 @@ val mapUrl = staticMap.toString()
// Result: https://maps.googleapis.com/maps/api/staticmap?key=yourApiKey&size=500x250&scale=2¢er=0.0,0.0&zoom=4&markers=51.507222,-0.1275|52.5069704,13.2846501|48.8589507,2.2770204
```
+## Download [![](https://jitpack.io/v/ivoberger/StatikGMapsAPI.svg)](https://jitpack.io/#ivoberger/StatikGMapsAPI)
+
+#### Step 1: Add the JitPack repository to your build file
+Groovy
+
+```groovy
+allprojects {
+ repositories {
+ ...
+ maven { url 'https://jitpack.io' }
+ }
+}
+```
+
+
+Kotlin
+
+```kotlin
+allprojects {
+ repositories {
+ ...
+ maven { url = "https://jitpack.io" }
+ }
+}
+```
+
+
+
+#### Step 2: #### Step 1: Add the JitPack repository to your build file
+
+Groovy
+
+```groovy
+dependencies {
+ implementation 'com.github.ivoberger:StatikGMapsAPI:latestVersion'
+}
+```
+
+
+Kotlin
+
+```kotlin
+dependencies {
+ implementation("com.github.ivoberger:StatikGMapsAPI:latestVersion")
+}
+```
+
+
+