Negru Ionut Valentin
Negru Ionut Valentin
It can be done in a new file for versioning, otherwise the file can be renamed to proguard-butterknife-8.pro.
The animations need to be chained, there is an to do there, but i didn't had time for it. if it is only +1 or -1 it should work though.
One solution that I've come up with is to use an inner static class for the Loader: ``` @Override public Loader onCreateLoader(int id, Bundle args) { return new InnerPresenterLoader(this); }...
Thank you @kuassivi for your opinion and your recommendation.
Thank you @Zireck, That is a very good example and it is very close to what **Tomislav Homan** described. The only difference there is that everything is in one module....
Thank you for the information @jpventura. That is exactly what I had done in the end :)
Wondering about this also - is this just to avoid very long parses? That magic number of 100 does not really make sense.
I encountered the same issue with the '00'. Any fix for this? It seems it crashes from: ``` private ParseResult parseWithResult(int aLevel, byte[] aBuf, int aOffset, int aLen) { ......
Thank you @thellmund . I was indeed able to update the text color programmatically via `WeekViewEntity.Style`. For the separator, I still want to keep the hour & day separators, I...
Meanwhile I've created an extension function that does the validation before using the static `BerTlv.parse()` method: ``` fun String.parseBerTlv(): BerTlv? { return if (ISOUtil.isValidHexString(this)) { BerTlv.parse(this.decodeHex()) } else { null...