Last active
February 9, 2019 22:34
-
-
Save CagriAldemir/154efad3e8016d5e543941b8fcddb4ed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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