Files
sizzletracker-android/app/src/main/AndroidManifest.xml
2026-07-15 16:22:04 +02:00

79 lines
3.8 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">
<!-- ===== Permissions =====
RECORD_AUDIO : ad-hoc sample recorder (mic / USB audio in).
FOREGROUND_SERVICE : keep the sequencer alive while the app is backgrounded.
FOREGROUND_SERVICE_MEDIA_PLAYBACK : Android 14 requires a typed FGS.
POST_NOTIFICATIONS : show the media transport notification (Android 13+).
BLUETOOTH_CONNECT : Bluetooth MIDI + gamepad on Android 12+. -->
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
<!-- Hardware we can *use* but do not *require* (so the app still installs on
devices without them). Code must always feature-detect at runtime. -->
<uses-feature android:name="android.hardware.usb.host" android:required="false" />
<uses-feature android:name="android.software.midi" android:required="false" />
<uses-feature android:name="android.hardware.gamepad" android:required="false" />
<uses-feature android:name="android.hardware.bluetooth" android:required="false" />
<uses-feature android:name="android.hardware.microphone" android:required="false" />
<application
android:name=".SizzleApp"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="false"
android:theme="@style/Theme.Sizzletracker">
<activity
android:name=".MainActivity"
android:exported="true"
android:configChanges="orientation|screenSize|keyboardHidden|navigation|keyboard"
android:launchMode="singleTop"
android:theme="@style/Theme.Sizzletracker">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- Announce that we can be a USB-MIDI aware app; the system routes
attach events here so we can auto-connect controllers. -->
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
</intent-filter>
<meta-data
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
android:resource="@xml/usb_device_filter" />
</activity>
<!-- Exposes saved preset files (and zip bundles) as content:// URIs so they
can be shared to other apps via the system share sheet. -->
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<!-- Foreground service that owns the audio engine so playback survives
when the UI is not visible, and drives the media notification. -->
<service
android:name=".playback.PlaybackService"
android:exported="true"
android:foregroundServiceType="mediaPlayback">
<intent-filter>
<action android:name="androidx.media3.session.MediaSessionService" />
</intent-filter>
</service>
</application>
</manifest>