Codebase list crossguid / run/9476235b-f0c3-4702-961d-c4b8e96540f3/main android / app / src / main / AndroidManifest.xml
run/9476235b-f0c3-4702-961d-c4b8e96540f3/main

Tree @run/9476235b-f0c3-4702-961d-c4b8e96540f3/main (Download .tar.gz)

AndroidManifest.xml @run/9476235b-f0c3-4702-961d-c4b8e96540f3/mainraw · 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>