aboutsummaryrefslogtreecommitdiffstats
path: root/templates/other/Notification/recipe.xml.ftl
blob: bd1c2654ab086e14f3491e3441d3c4c087626f5a (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
<?xml version="1.0"?>
<recipe>

    <merge from="AndroidManifest.xml.ftl" />

    <#if expandedStyle == "picture">
    <copy from="res/drawable-nodpi/example_picture_large.png"
            to="res/drawable-nodpi/example_picture.png" />
    <#else>
    <copy from="res/drawable-nodpi/example_picture_small.png"
            to="res/drawable-nodpi/example_picture.png" />
    </#if>

    <#if moreActions>
    <copy from="res/drawable-hdpi" />
    <copy from="res/drawable-mdpi" />
    <copy from="res/drawable-xhdpi" />
    </#if>

    <merge from="res/values/strings.xml.ftl" />

    <instantiate from="src/app_package/NotificationHelper.java.ftl"
                   to="${srcOut}/${className}.java" />
    <open file="${srcOut}/${className}.java" />
</recipe>