Reputation: 121
I am not able to download the 5.6.5 osmdroid library. It take me to this page .Which version should I use?
Thanks.
Upvotes: 0
Views: 44
Reputation: 5780
Follow instructions on osmdroid page https://osmdroid.github.io/osmdroid :
Add this to your gradle file:
repositories {
mavenCentral()
}
dependencies {
compile 'org.osmdroid:osmdroid-android:5.6.4'
}
Or if you cannot use gradle you can download it here: https://github.com/osmdroid/osmdroid/releases
Upvotes: 1