For the files I'm currently using this:
which works but is a bit ugly. So yeah I'm already supporting files named "hour.png", "minute.png", ...
And I pretty much consider qcview the successor to qcthemer (especially since xposed conflicts with LGs quick circle on lollipop), so I don't worry too much about compatibility.
But even then you'd probably want to be compatible with the old clocks.
Are the G4 clocks the same size as the G3 ones? If not we should probably add a resolution prefix (something like hour_1046.png).
Afaik MIT is pretty much compatible with everything. I've chosen it over Apache, because Apache isn't compatible with GPL.
The design looks pretty nice, I think I'm going to include this on qcview too (Except the color, I can't stand that blue-grey thingy
).
Code:
private String findFile(String name) {
if(files.contains("b2_quickcircle_analog_style01_" + name + ".png")) {
return "b2_quickcircle_analog_style01_" + name + ".png";
} else if(files.contains("b2_quickcircle_analog_style02_" + name + ".png")) {
return "b2_quickcircle_analog_style02_" + name + ".png";
} else if(files.contains("b2_quickcircle_analog_style03_" + name + ".png")) {
return "b2_quickcircle_analog_style03_" + name + ".png";
} else if(files.contains(name + ".png")) {
return name + ".png";
}
return null;
}
And I pretty much consider qcview the successor to qcthemer (especially since xposed conflicts with LGs quick circle on lollipop), so I don't worry too much about compatibility.
But even then you'd probably want to be compatible with the old clocks.
Are the G4 clocks the same size as the G3 ones? If not we should probably add a resolution prefix (something like hour_1046.png).
Afaik MIT is pretty much compatible with everything. I've chosen it over Apache, because Apache isn't compatible with GPL.
The design looks pretty nice, I think I'm going to include this on qcview too (Except the color, I can't stand that blue-grey thingy