cranpose 0.1.162

Cranpose runtime and UI facade
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<!--
    Media playback: the foreground service that keeps an item playing with the
    app off screen.

    The permissions Android requires to start it are the application's to
    declare, along with RECORD_AUDIO for a visualiser that reads analysis
    samples; the build fails and names the ones it is missing.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

    <application>
        <service
            android:name="dev.cranpose.android.CranposeMediaService"
            android:exported="false"
            android:foregroundServiceType="mediaPlayback" />
    </application>
</manifest>