Skip to content

Instantly share code, notes, and snippets.

@wajahatkarim3
Created December 25, 2019 09:32
Show Gist options
  • Save wajahatkarim3/18ae064066f0669a6154c792b680f728 to your computer and use it in GitHub Desktop.
Save wajahatkarim3/18ae064066f0669a6154c792b680f728 to your computer and use it in GitHub Desktop.
The AndroidManifest.xml file for your app
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.wajahatkarim.splashscreen.demo">
<application
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<!-- Your Splash Activity theme -->
<activity android:name=".SplashActivity"
android:theme="@style/AppTheme.Splash">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Other Activities and other stuff -->
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment