android/michelson.studio/michelson/src/main/AndroidManifest.xml
author hh
Fri, 22 Nov 2019 09:40:16 +0100
changeset 0 16509f98f301
permissions -rw-r--r--
--

<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="hh.michelson"
    >

    <application
        android:label="@string/app_name"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:theme="@android:style/Theme.Holo.Light.NoActionBar"
        >

        <activity
            android:name=".A"
            >

            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>

        </activity>

    </application>

</manifest>