Skip to content

Instantly share code, notes, and snippets.

@parthvora25
Created April 10, 2018 17:05
Show Gist options
  • Save parthvora25/f1ae206e7d0492e38716f43432e6e394 to your computer and use it in GitHub Desktop.
Save parthvora25/f1ae206e7d0492e38716f43432e6e394 to your computer and use it in GitHub Desktop.
nabvsn
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.splashscreendemo"
android:versionCode="1"
android:versionName="1.0" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!-- Splash screen -->
<activity
android:name="com.android.splashscreendemo.SplashActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Black.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Main activity -->
<activity
android:name="com.android.splashscreendemo.MainActivity"
android:label="@string/app_name" >
</activity>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment