Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / tools / templates / projects / NewAndroidApplication / recipe.xml.ftl
blob73bf014b7710fcb63cdfe7224ab02e69167266bb
1 <?xml version="1.0"?>
2 <recipe>
3 <instantiate from="AndroidManifest.xml.ftl"
4 to="${escapeXmlAttribute(manifestOut)}/AndroidManifest.xml" />
6 <#if copyIcons>
7 <copy from="res/drawable-hdpi"
8 to="${escapeXmlAttribute(resOut)}/drawable-hdpi" />
9 <copy from="res/drawable-mdpi"
10 to="${escapeXmlAttribute(resOut)}/drawable-mdpi" />
11 <copy from="res/drawable-xhdpi"
12 to="${escapeXmlAttribute(resOut)}/drawable-xhdpi" />
13 </#if>
14 <instantiate from="res/values/styles.xml.ftl"
15 to="${escapeXmlAttribute(resOut)}/values/styles.xml" />
16 <#if buildApi gte 11 && baseTheme != "none">
17 <instantiate from="res/values-v11/styles_hc.xml.ftl"
18 to="${escapeXmlAttribute(resOut)}/values-v11/styles.xml" />
19 </#if>
20 <#if buildApi gte 14 && baseTheme?contains("darkactionbar")>
21 <instantiate from="res/values-v14/styles_ics.xml.ftl"
22 to="${escapeXmlAttribute(resOut)}/values-v14/styles.xml" />
23 </#if>
25 <instantiate from="res/values/strings.xml.ftl"
26 to="${escapeXmlAttribute(resOut)}/values/strings.xml" />
27 </recipe>