aboutsummaryrefslogtreecommitdiffstats
path: root/templates/other/ContentProvider/template.xml
diff options
context:
space:
mode:
authorJosiah Gaskin <josiahgaskin@google.com>2013-07-31 14:21:16 -0700
committerJosiah Gaskin <josiahgaskin@google.com>2013-07-31 14:21:16 -0700
commitf7c5f6b3fb2f6bd820d0d70ec48be12df103cf12 (patch)
tree91e9e7227cc1a79a08edd6f742a918628b08d994 /templates/other/ContentProvider/template.xml
parentbe3b71eb1f30ebaf063d0df63e1f082844df24a3 (diff)
downloadsdk-f7c5f6b3fb2f6bd820d0d70ec48be12df103cf12.zip
sdk-f7c5f6b3fb2f6bd820d0d70ec48be12df103cf12.tar.gz
sdk-f7c5f6b3fb2f6bd820d0d70ec48be12df103cf12.tar.bz2
Update template location for SDK build
This change removes templates from the SDK source tree (from sdk/templates) and points the build/tools.atree build location file to their new location in tools/base/templates Change-Id: Id37b24eceaae6dcc0b3bf5078a759a337cb13467
Diffstat (limited to 'templates/other/ContentProvider/template.xml')
-rw-r--r--templates/other/ContentProvider/template.xml40
1 files changed, 0 insertions, 40 deletions
diff --git a/templates/other/ContentProvider/template.xml b/templates/other/ContentProvider/template.xml
deleted file mode 100644
index 21ed1be..0000000
--- a/templates/other/ContentProvider/template.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<?xml version="1.0"?>
-<template
- format="1"
- revision="1"
- name="Content Provider"
- description="Creates a new content provider component and adds it to your Android manifest.">
-
- <parameter
- id="className"
- name="Class Name"
- type="string"
- constraints="class|unique|nonempty"
- default="MyContentProvider" />
-
- <parameter
- id="authorities"
- name="URI Authorities"
- type="string"
- constraints="nonempty"
- default=""
- help="A list of one or more URI authorities that identify data under the purview of the content provider. " />
-
- <parameter
- id="isExported"
- name="Exported"
- type="boolean"
- default="true"
- help="Whether or not the content provider can be used by components of other applications " />
-
- <parameter
- id="isEnabled"
- name="Enabled"
- type="boolean"
- default="true"
- help="Whether or not the content provider can be instantiated by the system " />
-
- <globals file="globals.xml.ftl" />
- <execute file="recipe.xml.ftl" />
-
-</template>