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

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

</manifest>