47 lines
1.9 KiB
XML
47 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<!-- <!– If your app targets Android 13 (API level 33)-->
|
|
<!-- or higher, you must declare the NEARBY_WIFI_DEVICES permission. –>-->
|
|
<!-- <uses-permission android:name="android.permission.NEARBY_WIFI_DEVICES"-->
|
|
<!-- <!– If your app derives location information from Wi-Fi APIs,-->
|
|
<!-- don't include the "usesPermissionFlags" attribute. –>-->
|
|
<!-- android:usesPermissionFlags="neverForLocation" />-->
|
|
|
|
<uses-permission
|
|
android:required="true"
|
|
android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
|
<!-- If any feature in your app relies on precise location information,
|
|
don't include the "maxSdkVersion" attribute. -->
|
|
<uses-permission
|
|
android:required="true"
|
|
android:name="android.permission.ACCESS_WIFI_STATE"/>
|
|
<uses-permission
|
|
android:required="true"
|
|
android:name="android.permission.CHANGE_WIFI_STATE"/>
|
|
<uses-permission
|
|
android:required="true"
|
|
android:name="android.permission.INTERNET"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:dataExtractionRules="@xml/data_extraction_rules"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.Ueberwachungssystem"
|
|
tools:targetApi="31">
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest> |