blob: 0eed6828db4fa22645be774c521f3bd73a2d9fb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?xml version="1.0"?>
<template
name="New Master/Detail Flow"
description="Creates a new master/detail flow, which is two columns on tablets, and one column on smaller screens. This creates a master fragment, detail fragment, and two activities.">
<thumbs>
<thumb>template_master_detail.png</thumb>
</thumbs>
<category value="Flows" />
<parameter
id="objectKind"
name="Object Kind"
type="string"
constraints="nonempty"
default="Item"
help="Other examples are 'Person', 'Book', etc." />
<parameter
id="objectKindPlural"
name="Object Kind Plural"
type="string"
constraints="nonempty"
default="Items"
help="Other examples are 'People', 'Books', etc." />
<parameter
id="appTitle"
name="Application title"
type="string"
constraints="nonempty"
default="My Application" />
<parameter
id="packageName"
name="Package name"
type="string"
constraints="package"
default="com.mycompany.myapp" />
<globals file="globals.xml.ftl" />
<execute file="recipe.xml.ftl" />
</template>
|