-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
214 additions
and
165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,24 @@ | ||
<?xml version="1.0"?> | ||
<globals> | ||
<#include "../common/common_globals.xml.ftl" /> | ||
<global id="subpackage" value="<#if useSubPackage>${subPackage}/<#else></#if>" /> | ||
<global id="dotSubpackage" value="<#if useSubPackage>.${subPackage}<#else></#if>" /> | ||
|
||
<global id="superClassName" type="string" value=" | ||
<#if superClass == 'baseActivity'>BaseActivity | ||
<#elseif superClass == 'appCompat'>MvpAppCompatActivity | ||
<#else>MvpActivity</#if> | ||
" /> | ||
|
||
<global id="superClassFqcn" type="string" value=" | ||
<#if superClass == 'baseActivity'>${packageName}.ui.activity.BaseActivity | ||
<#elseif superClass == 'appCompat'>com.arellomobile.mvp.MvpAppCompatActivity | ||
<#else>com.arellomobile.mvp.MvpActivity</#if> | ||
" /> | ||
|
||
<global id="manifestOut" value="${manifestDir}" /> | ||
<global id="useSupport" type="boolean" value="${(minApiLevel lt 11)?string}" /> | ||
<global id="resOut" value="${resDir}" /> | ||
<global id="srcOut" value="${srcDir}/${slashedPackageName(packageName)}" /> | ||
<global id="relativePackage" value=".ui.activity" /> | ||
<global id="subpackage" value="<#if useSubPackage>${subPackage}/<#else></#if>" /> | ||
<global id="dotSubpackage" value="<#if useSubPackage>.${subPackage}<#else></#if>" /> | ||
|
||
</globals> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.