[THEME DEVS][THEME-CHOOSER] New Mod standards[TAKE NOTE PLEASE]
So 2 rom teams. Savaged-Zen and Evervolv both by stock utilize the 6 bar and 100 battery mod in there themes. With the recent addition of Theme-Chooser in the roms, we've come together to make a standard for Theme Dev's to utilize these mods in their themes, and let the system be smart and know how to change it in the backend framework to properly use the mods.
To add a 6 bar mod or the 100 battery mod, add the images into the theme. and modify the below file
res/values/theme.xml
Code:
<resources>
<style name="Theme Name" parent="@android:style/Theme" />
//for signal mod set to true if not used you dont even need this line
<boolean name="extra_theme_compatibility_signal">true</boolean>
//for battery mod set to true if not used you dont even need this line
<boolean name="extra_theme_compatibility_battery">true</boolean>
</resources>
|