blob: b343a1030812b11e5bd78a4cb82f6a91b8597390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?xml version="1.0"?>
<recipe>
<instantiate from="AndroidManifest.xml.ftl" />
<#if copyIcons>
<copy from="res/drawable-hdpi" />
<copy from="res/drawable-mdpi" />
<copy from="res/drawable-xhdpi" />
</#if>
<copy from="res/values/dimens.xml" />
<copy from="res/values/styles.xml" />
<copy from="res/values-large/dimens.xml" />
<instantiate from="res/values/strings.xml.ftl" />
</recipe>
|