* Fix iOS icons assets and include splash screen whitelabel * Whitelabel for app icon and splash screen on Android * iOS Splash layout
19 lines
724 B
XML
19 lines
724 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<android.support.percent.PercentRelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#ffffff"
|
|
android:gravity="center_horizontal"
|
|
tools:context=".SplashScreenActivity">
|
|
|
|
<ImageView
|
|
android:id="@+id/imgLogo"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:adjustViewBounds="true"
|
|
android:src="@drawable/splash" />
|
|
|
|
</android.support.percent.PercentRelativeLayout>
|