JobService: Fix inital font application

If a user does not modify the font size default, Interfacer will throw
a NPE due to not finding FONT_SCALE and having no default value to try
and pull from. Add that and make it multi-user friendly.

Change-Id: Icbf3abbf48b3a1cf3594f8d923855a52b009920c
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
1 file changed
tree: 6ee4ae79dd211a98f8fd1e05605b5a358a7b8e39
  1. app/
  2. gradle/
  3. .gitignore
  4. Android.mk
  5. build.gradle
  6. gradle.properties
  7. gradlew
  8. gradlew.bat
  9. LICENSE.txt
  10. projekt.substratum.theme.xml
  11. README.md
  12. settings.gradle
README.md

ThemeInterfacer

ThemeInterfacer is the background service of the theme system developed by the Projekt team. It allows theme apps (including Substratum) to run system wide operations, otherwise unobtainable without root access. This also alleviates the performance stress on the theme app.

How to add to ROM builds

If you are a ROM developer, by now you should know how to track new packages while building your ROM. However, if you don't - please follow these steps:

Add "ThemeInterfacer" in your PRODUCT_PACKAGES

PRODUCT_PACKAGES += \
...\
...\
...\
ThemeInterfacer

Don't forget to add the project path in your AOSP manifest:

<project path="packages/apps/ThemeInterfacer" name="substratum/interfacer" remote="github" revision="n-rootless" />