2026-03-08 16:14:19 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
|
<!-- Write to external storage for OSMDroid tile cache on older devices -->
|
|
|
|
|
<uses-permission
|
|
|
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
|
|
|
|
android:maxSdkVersion="28" />
|
|
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:name=".TilfluktsromApp"
|
2026-03-08 17:53:51 +01:00
|
|
|
android:allowBackup="false"
|
2026-03-08 16:14:19 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:theme="@style/Theme.Tilfluktsrom"
|
2026-03-08 17:41:23 +01:00
|
|
|
android:networkSecurityConfig="@xml/network_security_config"
|
|
|
|
|
android:localeConfig="@xml/locales_config">
|
2026-03-08 16:14:19 +01:00
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:exported="true"
|
2026-03-08 22:23:28 +01:00
|
|
|
android:launchMode="singleTop"
|
2026-03-08 16:14:19 +01:00
|
|
|
android:windowSoftInputMode="adjustPan">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
2026-03-08 22:23:28 +01:00
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
|
<data
|
|
|
|
|
android:scheme="tilfluktsrom"
|
|
|
|
|
android:host="shelter" />
|
|
|
|
|
</intent-filter>
|
2026-03-08 16:14:19 +01:00
|
|
|
</activity>
|
2026-03-08 19:10:57 +01:00
|
|
|
|
|
|
|
|
<receiver
|
|
|
|
|
android:name=".widget.ShelterWidgetProvider"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:label="@string/nearest_shelter">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
|
<action android:name="no.naiv.tilfluktsrom.widget.REFRESH" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
|
android:resource="@xml/widget_info" />
|
|
|
|
|
</receiver>
|
2026-03-08 16:14:19 +01:00
|
|
|
</application>
|
|
|
|
|
</manifest>
|