Roll NDK to pick std::deque patch.
[android_tools.git] / sdk / tools / templates / activities / BlankActivityWithFragment / recipe.xml.ftl
blob3a2bd11cf000ca6a75f6b9d1bb97e6e88324b932
1 <?xml version="1.0"?>
2 <recipe>
4 <#if appCompat><dependency mavenUrl="com.android.support:appcompat-v7:19.+"/></#if>
6 <merge from="AndroidManifest.xml.ftl"
7 to="${escapeXmlAttribute(manifestOut)}/AndroidManifest.xml" />
9 <instantiate from="res/menu/main.xml.ftl"
10 to="${escapeXmlAttribute(resOut)}/menu/${menuName}.xml" />
12 <merge from="res/values/strings.xml.ftl"
13 to="${escapeXmlAttribute(resOut)}/values/strings.xml" />
15 <merge from="res/values/dimens.xml.ftl"
16 to="${escapeXmlAttribute(resOut)}/values/dimens.xml" />
17 <merge from="res/values-w820dp/dimens.xml"
18 to="${escapeXmlAttribute(resOut)}/values-w820dp/dimens.xml" />
20 <instantiate from="res/layout/activity_fragment_container.xml.ftl"
21 to="${escapeXmlAttribute(resOut)}/layout/${layoutName}.xml" />
23 <instantiate from="res/layout/fragment_simple.xml.ftl"
24 to="${escapeXmlAttribute(resOut)}/layout/${fragmentLayoutName}.xml" />
26 <instantiate from="src/app_package/SimpleActivity.java.ftl"
27 to="${escapeXmlAttribute(srcOut)}/${activityClass}.java" />
29 <open file="${escapeXmlAttribute(srcOut)}/${activityClass}.java" />
30 <open file="${escapeXmlAttribute(resOut)}/layout/${fragmentLayoutName}.xml" />
31 </recipe>