blob: 84ba6c7d778ba3cd3c63be32aab82f917870095b (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?xml version="1.0"?>
<template
name="New Android Application"
description="Creates a new Android application with an activity.">
<thumbs>
<thumb>template_new_project.png</thumb>
</thumbs>
<category value="Applications" />
<parameter
id="packageName"
name="Package name"
type="string"
constraints="package"
default="com.mycompany.myapp" />
<parameter
id="appTitle"
name="Application title"
type="string"
constraints="nonempty"
default="My Application" />
<parameter
id="minApi"
name="Minimum API level"
type="string"
constraints="apilevel"
default="7" />
<!--
Usually the same as minApi, but when minApi is a code name this will be the corresponding
API level
-->
<parameter
id="minApiLevel"
name="Minimum API level"
type="string"
constraints="apilevel"
default="7" />
<parameter
id="targetApi"
name="Target API level"
type="string"
constraints="apilevel"
default="15" />
<parameter
id="copyIcons"
name="Include launcher icons"
type="boolean"
default="true" />
<globals file="globals.xml.ftl" />
<execute file="recipe.xml.ftl" />
</template>
|