Skip to content

Instantly share code, notes, and snippets.

@CagriAldemir
Last active February 9, 2019 22:34
Show Gist options
  • Save CagriAldemir/154efad3e8016d5e543941b8fcddb4ed to your computer and use it in GitHub Desktop.
Save CagriAldemir/154efad3e8016d5e543941b8fcddb4ed to your computer and use it in GitHub Desktop.
<application
android:name=".MyApp"
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">
package tr.com.cagrialdemir.splashcreenexample;
import android.app.Application;
import android.os.SystemClock;
public class MyApp extends Application {
@Override
public void onCreate() {
super.onCreate();
SystemClock.sleep(2500);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment