From 701c464882be7b195aa08e8580557c0fffab3d12 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Wed, 10 Nov 2021 15:54:31 +0100 Subject: [PATCH] Fixed java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity --- app/src/main/AndroidManifest.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 431fad6d6..88547b8ef 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -39,13 +39,14 @@ android:label="${appLabel}" android:roundIcon="@mipmap/ic_launcher_round" android:extractNativeLibs="${extractNativeLibs}" - android:theme="@style/AppSplashScreenTheme" + android:theme="@style/AppTheme" android:allowNativeHeapPointerTagging="false"> + android:windowSoftInputMode="adjustResize" + android:theme="@style/AppSplashScreenTheme">