android tech
android tech

Reputation: 13

OsmDroid Maps is not loading in Android 10 (Online Mode)

I'm working with osmdroid map in online mode. The map is loading properly in online mode in Android 11. But in Android 10 getting below issue.

java.io.IOException: Cleartext HTTP traffic to b.tile.openstreetmap.org not permitted

Upvotes: 0

Views: 541

Answers (1)

Rohan Lodhi
Rohan Lodhi

Reputation: 1395

Add below line in manifest file.

android:usesCleartextTraffic="true"

AndroidManifest.xml -

<?xml version="1.0" encoding="utf-8"?>
<manifest ...>
    <uses-permission android:name="android.permission.INTERNET" />
    <application
        ...
        android:usesCleartextTraffic="true"
        ...>
        ...
    </application>
</manifest>   

For more info android:usesCleartextTraffic Doc

Upvotes: 2

Related Questions