Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / tools / templates / other / BroadcastReceiver / template.xml
blob159ff75d3f9f2962bee16395bd0bd65f1d884b30
1 <?xml version="1.0"?>
2 <template
3     format="4"
4     revision="2"
5     name="Broadcast Receiver"
6     description="Creates a new broadcast receiver component and adds it to your Android manifest.">
8     <parameter
9         id="className"
10         name="Class Name"
11         type="string"
12         constraints="class|unique|nonempty"
13         default="MyReceiver" />
15     <parameter
16         id="isExported"
17         name="Exported"
18         type="boolean"
19         default="true"
20         help="Whether or not the broadcast receiver can receive messages from sources outside its application" />
22     <parameter
23         id="isEnabled"
24         name="Enabled"
25         type="boolean"
26         default="true"
27         help="Whether or not the broadcast receiver can be instantiated by the system" />
29     <globals file="globals.xml.ftl" />
30     <execute file="recipe.xml.ftl" />
32 </template>