22 lines
786 B
XML
22 lines
786 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
||
|
<application>
|
||
|
<activity
|
||
|
android:name=".activity.support.OpenStreetMapViewerActivity"
|
||
|
android:exported="false"
|
||
|
android:label="@string/view_map"
|
||
|
android:theme="@style/Theme.Blank">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.VIEW"/>
|
||
|
|
||
|
<category android:name="android.intent.category.BROWSABLE"/>
|
||
|
<category android:name="android.intent.category.DEFAULT"/>
|
||
|
|
||
|
<data
|
||
|
android:host="map"
|
||
|
android:scheme="twidere"/>
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
</application>
|
||
|
</manifest>
|