fix(android) explicitly sets the theme for JitsiMeetActivity

pull/11775/head jitsi-meet_7488
tmoldovan8x8 2 years ago committed by GitHub
parent d029045fda
commit 51f7b46628
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      android/sdk/src/main/AndroidManifest.xml
  2. 3
      android/sdk/src/main/res/values/styles.xml

@ -32,6 +32,7 @@
android:name=".JitsiMeetActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
android:launchMode="singleTask"
android:theme="@style/JitsiMeetActivityStyle"
android:resizeableActivity="true"
android:supportsPictureInPicture="true"
android:windowSoftInputMode="adjustResize"/>

@ -0,0 +1,3 @@
<resources>
<style name="JitsiMeetActivityStyle" parent="Theme.AppCompat.Light.NoActionBar"/>
</resources>
Loading…
Cancel
Save