While implementing the new Android M permission model I noticed that the permissions dialog does not respect the theming of my styles.xml.
In my styles.xml I override the dialog and alertdialog style like this:
<item name="android:dialogTheme">@style/Theme.dialog</item>
<item name="android:alertDialogTheme">@style/Theme.dialog</item>
Is it possible to change the theming?
Or is it because this is a system dialog like in the device settings?