From f624cc60efe593fcbf8a020163989489f8ffb1f6 Mon Sep 17 00:00:00 2001
From: Ivo Berger <16694197+ivoberger@users.noreply.github.com>
Date: Mon, 9 Sep 2019 10:47:36 +0200
Subject: [PATCH] adds download instructions to readme
---
README.md | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 49 insertions(+)
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/#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")
+}
+```
+
+
+