BigBoot / qcthemer

Theme manager for LG G3 QuickCircle watchfaces

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Quick Circle Themer

Quick Circle Themer is a Xposed Module which allows you to easily change the watchfaces of the LG G3 Quick Circle Case

Screenshot

##Download Download the apk file here You can find some themes here or here

##Theme creation See Getting the original resources to get an Idea about the files to modify. Once you've got your modified files, you need to package them for the app.

  1. You need a clock.xml, here's an example:
<?xml version="1.0" encoding="utf-8"?>
<clock>
    <!--Title of the clock-->
    <title>Awesome clock</title>
    <!--some identifier. Use something unique-->
    <id>com.coolguy.awesome</id>
    <!--Name of the Author-->
    <author>CoolGuy42</author>
    <!--Description of the clock-->
    <description>Some description</description>
    <!--[Optional] Will automatically switch to clock when it's activated.-->
    <!--Value is the index of the clock-->
    <activate>0</activate>
    <!--Device for which the clock is. "G2" or "G3"-->
    <!--If not present will default to G3-->
    <device>G3</device>
    <replaces>
  	  <!--List all files, you want to replace-->
        <file>b2_quickcircle_analog_style03_hour.png</file>
        <file>b2_quickcircle_analog_style03_minute.png</file>
        <file>b2_quickcircle_analog_style03_second.png</file>
        <file>b2_quickcircle_analog_style03_bg.png</file>
    </replaces>
</clock>
  1. You should optionally provide a preview.png which will be shown in the watchface chooser
  2. Now zip up all your files, in the example you would zip the following files:
clock.xml
preview.png   
b2_quickcircle_analog_style03_hour.png
b2_quickcircle_analog_style03_minute.png
b2_quickcircle_analog_style03_second.png
b2_quickcircle_analog_style03_bg.png

###Getting the original resources Make sure your phone is rooted and your adb is working

####LG G3

  1. Get your LGAlarmClock.apk from your phone:
adb pull /system/priv-app/LGAlarmClock.apk LGAlarmClock.apk
  1. Extract LGAlarmClock.apk
  2. The original resource are in LGAlarmClock/res/raw-xxxhdpi/

####LG G2

  1. Get your LGClockWidget.apk from your phone:
adb pull /system/priv-app/LGClockWidget.apk LGClockWidget.apk
  1. Extract LGClockWidget.apk
  2. The original resource are in LGClockWidget/res/drawable-xxhdpi/

Version

0.3

Acknowledgements

About

Theme manager for LG G3 QuickCircle watchfaces

License:MIT License


Languages

Language:Java 91.6%Language:Groovy 6.3%Language:Prolog 2.2%