2022-01-22 18:30:23 +01:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-05-02 21:56:32 +02:00
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="internalOnly" package="com.TeilRad.Meinkonrad" android:versionName="3.0.297" android:versionCode="297">
|
2022-04-25 22:15:15 +02:00
|
|
|
|
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="31" />
|
2021-11-07 19:42:59 +01:00
|
|
|
|
<!-- Google Maps related permissions -->
|
2022-01-04 18:54:03 +01:00
|
|
|
|
<!-- Permission to receive remote notifications from Google Play Services -->
|
|
|
|
|
<!-- Notice here that we have the package name of our application as a prefix on the permissions. -->
|
|
|
|
|
<permission android:name="com.TeilRad.Meinkonrad.permission.MAPS_RECEIVE" android:protectionLevel="signature" />
|
2021-11-07 19:42:59 +01:00
|
|
|
|
<!-- Network connectivity permissions -->
|
|
|
|
|
<!-- Access Google based webservices -->
|
|
|
|
|
<!-- External storage for caching. -->
|
|
|
|
|
<!-- My Location -->
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
|
<uses-feature android:name="android.hardware.location" android:required="false" />
|
|
|
|
|
<uses-feature android:name="android.hardware.location.gps" android:required="false" />
|
|
|
|
|
<uses-feature android:name="android.hardware.location.network" android:required="false" />
|
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
|
|
|
<uses-feature android:name="android.hardware.bluetooth_le" android:required="true" />
|
2022-01-04 18:54:03 +01:00
|
|
|
|
<application android:icon="@drawable/sharee" android:label="Meinkonrad" android:allowBackup="false"></application>
|
2022-01-22 18:30:23 +01:00
|
|
|
|
<queries>
|
|
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2022-04-10 17:38:34 +02:00
|
|
|
|
<data android:scheme="http" />
|
2022-01-22 18:30:23 +01:00
|
|
|
|
</intent>
|
|
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2022-04-10 17:38:34 +02:00
|
|
|
|
<data android:scheme="https" />
|
2022-01-22 18:30:23 +01:00
|
|
|
|
</intent>
|
|
|
|
|
<intent>
|
|
|
|
|
<action android:name="android.intent.action.SENDTO" />
|
|
|
|
|
<data android:scheme="mailto" />
|
|
|
|
|
</intent>
|
|
|
|
|
</queries>
|
2022-01-04 18:54:03 +01:00
|
|
|
|
<meta-data android:name="com.google.android.geo.API_KEY" android:value="000000000000000000000000000000000000000" />
|
2021-11-07 19:42:59 +01:00
|
|
|
|
</manifest>
|