• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0"?>
2<template
3    format="1"
4    revision="1"
5    name="Service"
6    description="Creates a new service component and adds it to your Android manifest.">
7
8    <parameter
9        id="className"
10        name="Class Name"
11        type="string"
12        constraints="class|unique|nonempty"
13        default="MyService" />
14
15    <parameter
16        id="isExported"
17        name="Exported"
18        type="boolean"
19        default="true"
20        help="Whether or not components of other applications can invoke the service or interact with it" />
21
22    <parameter
23        id="isEnabled"
24        name="Enabled"
25        type="boolean"
26        default="true"
27        help="Whether or not the service can be instantiated by the system" />
28
29    <globals file="globals.xml.ftl" />
30    <execute file="recipe.xml.ftl" />
31
32</template>
33