Skip to content

Instantly share code, notes, and snippets.

@ashwin-sp
Created May 13, 2018 23:00
Show Gist options
  • Save ashwin-sp/0eb97dbe5111d8abdc96d338fb6ba602 to your computer and use it in GitHub Desktop.
Save ashwin-sp/0eb97dbe5111d8abdc96d338fb6ba602 to your computer and use it in GitHub Desktop.
<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"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- Be sure to include this line for implicit URL Deep Link -->
<nav-graph android:value="@navigation/nav_item"/>
</activity>
</application>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment