Thomas
Thomas

Reputation: 121

Osmdroid recent repository not able to download

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

Answers (1)

Josef Adamcik
Josef Adamcik

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

Related Questions