33 lines
1.7 KiB
XML
33 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<!--
|
|
Borrowed from https://github.com/irh/audio-app/blob/main/apps/dioxus/AndroidManifest.xml
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
<uses-feature android:name="android.hardware.audio.low_latency" android:required="false" />
|
|
<uses-feature android:name="android.hardware.audio.output" android:required="false" />
|
|
<uses-feature android:name="android.hardware.audio.pro" android:required="false" />
|
|
<uses-feature android:name="android.hardware.microphone" android:required="false" />
|
|
|
|
<application android:hasCode="true" android:supportsRtl="true" android:icon="@mipmap/ic_launcher"
|
|
android:extractNativeLibs="true"
|
|
android:allowNativeHeapPointerTagging="false"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme"
|
|
android:networkSecurityConfig="@xml/network_security_config">
|
|
<activity android:configChanges="orientation|screenLayout|screenSize|keyboardHidden" android:exported="true"
|
|
android:label="@string/app_name" android:name="dev.dioxus.main.MainActivity">
|
|
<meta-data android:name="android.app.lib_name" android:value="dioxusmain" />
|
|
<meta-data android:name="android.app.func_name" android:value="ANativeActivity_onCreate" />
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|