summaryrefslogtreecommitdiffstats
path: root/templates/projects/NewAndroidApplication/root/AndroidManifest.xml.ftl
blob: 80895b3f41e6f97e85aa06f0b35439a3c698d64f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="${packageName}"
    android:versionCode="1"
    android:versionName="1.0">

    <uses-sdk android:minSdkVersion="${minApi}" android:targetSdkVersion="${targetApi}" />

    <application android:allowBackup="true"
        android:label="@string/app_name"
        android:icon="@drawable/ic_launcher"<#if baseTheme != "none">
        android:theme="@style/AppTheme"</#if>>

    </application>

</manifest>