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

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

</manifest>