mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-07 20:46:17 +01:00
fix crash on Samsung Galaxy Note 3 running 4.4
Can't repro on Nexus emulator running 4.4 nor on Samsung running 4.4.4, but the reporter says this fixes it. And from reading it appears expecting older devices to load Material themes without an AppCompat library is wrong.
This commit is contained in:
parent
f5e66463f9
commit
8971837d22
4 changed files with 12 additions and 2 deletions
4
xwords4/android/app/src/main/res/values-v11/themes.xml
Normal file
4
xwords4/android/app/src/main/res/values-v11/themes.xml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="AppTheme" parent="android:Theme.Holo"/>
|
||||
</resources>
|
4
xwords4/android/app/src/main/res/values-v21/themes.xml
Normal file
4
xwords4/android/app/src/main/res/values-v21/themes.xml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="AppTheme" parent="android:Theme.Material"/>
|
||||
</resources>
|
|
@ -1,7 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="AppTheme" parent="android:Theme.Material"/>
|
||||
|
||||
<style name="config_separator">
|
||||
<item name="android:layout_height">wrap_content</item>
|
||||
<item name="android:layout_width">fill_parent</item>
|
||||
|
|
4
xwords4/android/app/src/main/res/values/themes.xml
Normal file
4
xwords4/android/app/src/main/res/values/themes.xml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<style name="AppTheme" parent="android:Theme"/>
|
||||
</resources>
|
Loading…
Add table
Reference in a new issue