aboutsummaryrefslogtreecommitdiffstats
path: root/templates/other/Service/root/AndroidManifest.xml.ftl
blob: 14b0bce466744324bc429f4ab1498d925116966d (plain)
1
2
3
4
5
6
7
8
9
10
<manifest xmlns:android="http://schemas.android.com/apk/res/android" >

    <application>
        <service android:name=".${className}"
            android:exported="${isExported?string}"
            android:enabled="${isEnabled?string}" >
        </service>
    </application>

</manifest>