Codebase list crossguid / 9476235b-f0c3-4702-961d-c4b8e96540f3/upstream/0.2.2+git20190529.1.ca1bf4b android / app / src / main / AndroidManifest.xml
9476235b-f0c3-4702-961d-c4b8e96540f3/upstream/0.2.2+git20190529.1.ca1bf4b

Tree @9476235b-f0c3-4702-961d-c4b8e96540f3/upstream/0.2.2+git20190529.1.ca1bf4b (Download .tar.gz)

AndroidManifest.xml @9476235b-f0c3-4702-961d-c4b8e96540f3/upstream/0.2.2+git20190529.1.ca1bf4braw · history · blame

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="ca.graemehill.crossguid.testapp">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name="MainActivity"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>