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
<?xml version="1.0" encoding="utf-8"?>
<!--
    Background execution: the foreground service Cranpose starts while an
    application holds a background-work lease.

    The permissions Android requires to start it are the application's to
    declare; the build fails and names them if it does not.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

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