* Android push notification snooze * Android splash & icons * iOS splash & icons * Update project assets * Replace iOS assets using Fastlane * Remove configure_telemetry_android from Fastlane script * Update Fastlane with master branch * Fix Android fastlane build * replace reference for com.mattermost.rnbeta.* imports * Set iOS ENTRY_FILE as index.ts
32 lines
1.3 KiB
XML
32 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/splashscreen_bg"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/splashBackgroundImage"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/splash_background"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<ImageView
|
|
android:id="@+id/splashIcon"
|
|
android:layout_width="96dp"
|
|
android:layout_height="96dp"
|
|
android:contentDescription="@string/app_name"
|
|
android:src="@drawable/splash"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|