But I have to create the app with AI2 because I am using an extension that uses the AndroidX libs (so Kodular is out). And I need the Dark mode (Theme: Dark) for various reasons.
Decompile APK, go to folder → \res\drawable\
Find the file and edit it → abc_dialog_material_background.xml
Find and change from this
<solid android:color="@android:color/white" />
to this <solid android:color="@color/material_grey_800" />
or this <solid android:color="@color/background_floating_material_dark" />
As far as I can see, there doesn't seem to be a (short-term) solution / workaround for Android 5. Therefore I will have to set the minSdkVersion = 23. Too bad. But maybe there is still hope in the near future / for the next AI2 update? @ewpatton
It works perfectly. Many Thanks!
You're unbeatable in things like that.
I'll check tomorrow on my other test devices, if there are any problems with other Android versions (> Android 5) with this solution (workaround), but I don't thinks so.