2026-02-01 02:54:05 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
|
2026-03-04 01:31:35 +01:00
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
|
|
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />
|
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
|
|
2026-03-07 18:48:57 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
|
|
|
|
|
|
2026-02-01 02:54:05 +01:00
|
|
|
<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:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:theme="@style/Theme.Lockstep"
|
|
|
|
|
tools:targetApi="31">
|
|
|
|
|
<activity
|
|
|
|
|
android:name="at.lockstep.app.MainActivity"
|
|
|
|
|
android:exported="true"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:theme="@style/Theme.Lockstep">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2026-03-07 18:48:57 +01:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
<activity
|
|
|
|
|
android:name="at.lockstep.app.MediaStoreBenchmarkActivity"
|
|
|
|
|
android:exported="true">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2026-02-01 02:54:05 +01:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
2026-03-19 12:27:38 +01:00
|
|
|
|
|
|
|
|
<activity android:name="at.lockstep.ui.SongPickerActivity" />
|
2026-03-19 19:17:57 +01:00
|
|
|
<activity android:name="at.lockstep.saf.SafPickerActivity" />
|
2026-03-19 12:27:38 +01:00
|
|
|
|
2026-03-04 01:31:35 +01:00
|
|
|
<service
|
|
|
|
|
android:name="at.lockstep.app.LstForegroundService"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:foregroundServiceType="mediaPlayback"
|
|
|
|
|
/>
|
2026-02-01 02:54:05 +01:00
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|