Current section

Files

Jump to
mob_new priv templates mob.new android app src main AndroidManifest.xml.eex
Raw

priv/templates/mob.new/android/app/src/main/AndroidManifest.xml.eex

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="<%= bundle_id %>">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:label="<%= display_name %>"
android:allowBackup="false"
android:extractNativeLibs="true"
android:theme="@android:style/Theme.NoTitleBar">
<activity android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>