summaryrefslogtreecommitdiff
path: root/templates/other/ContentProvider/root/AndroidManifest.xml.ftl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/other/ContentProvider/root/AndroidManifest.xml.ftl')
-rw-r--r--templates/other/ContentProvider/root/AndroidManifest.xml.ftl11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/other/ContentProvider/root/AndroidManifest.xml.ftl b/templates/other/ContentProvider/root/AndroidManifest.xml.ftl
new file mode 100644
index 0000000..354f6c9
--- /dev/null
+++ b/templates/other/ContentProvider/root/AndroidManifest.xml.ftl
@@ -0,0 +1,11 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android" >
+
+ <application>
+ <provider android:name="${relativePackage}.${className}"
+ android:authorities="${authorities}"
+ android:exported="${isExported?string}"
+ android:enabled="${isEnabled?string}" >
+ </provider>
+ </application>
+
+</manifest>