Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.

Commit d4dde39

Browse files
authored
change compile to implementation (#1880)
compile is deprecated from new version of graddle
1 parent 5cc6407 commit d4dde39

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repositories {
2424
}
2525
2626
dependencies {
27-
compile 'org.osmdroid:osmdroid-android:<VERSION>'
27+
implementation 'org.osmdroid:osmdroid-android:<VERSION>'
2828
}
2929
```
3030

@@ -64,7 +64,7 @@ repositories {
6464
}
6565
}
6666
dependencies {
67-
compile 'org.osmdroid:osmdroid-android:<VERSION>-SNAPSHOT:debug@aar'
67+
implementation 'org.osmdroid:osmdroid-android:<VERSION>-SNAPSHOT:debug@aar'
6868
}
6969
```
7070

@@ -176,7 +176,7 @@ allprojects {
176176
Then in your APK or AAR project that needs osmdroid.
177177

178178
```
179-
compile 'org.osmdroid:osmdroid-android:<VERSION>-SNAPSHOT:debug@aar'
179+
implementation 'org.osmdroid:osmdroid-android:<VERSION>-SNAPSHOT:debug@aar'
180180
```
181181
Where VERSION is the version listed as the value for `pom.version` in osmdroid's `gradle.properties`. Note that when using the release versions from Maven Central, drop the `:debug@aar` part. When using a "release" version that you build locally with gradle, you'll need `:debug@aar` instead.
182182

0 commit comments

Comments
 (0)