-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.xml.ftl
More file actions
12 lines (12 loc) · 759 Bytes
/
globals.xml.ftl
File metadata and controls
12 lines (12 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0"?>
<globals>
<global id="manifestOut" value="${manifestDir}" />
<global id="appCompat" value="${(minApiLevel lt 14)?string('1','')}" />
<!-- e.g. getSupportActionBar vs. getActionBar -->
<global id="Support" value="${(minApiLevel lt 14)?string('Support','')}" />
<global id="hasViewPager" value="${(features == 'pager' || features == 'tabs')?string('1','')}" />
<global id="hasSections" value="${(features == 'pager' || features == 'tabs' || features == 'spinner' || features == 'drawer')?string('1','')}" />
<global id="srcOut" value="${srcDir}/${slashedPackageName(packageName)}" />
<global id="resOut" value="${resDir}" />
<global id="menuName" value="${classToResource(activityClass)}" />
</globals>