WAI
Status Update
Comments
mo...@gmail.com <mo...@gmail.com> #2
It seems like it's also not restarted when being killed due to a low memory condition. This is a serious issue!
au...@google.com <au...@google.com>
zt...@google.com <zt...@google.com> #3
Same as 63618 issue reported before.
mo...@gmail.com <mo...@gmail.com> #4
Ruins battery notifications
ma...@gmail.com <ma...@gmail.com> #5
Had to stop using this. Too bad, loved it.
Description
A corresponding comment in the support library code is also wrong:
android.support.v7.widget.AppCompatDrawableManager#installDefaultInflateDelegates
It states:
if (sdk < 23) {
// We only want to use the automatic VectorDrawableCompat handling where it's
// needed: on devices running before Lollipop
manager.addDelegate("vector", new VdcInflateDelegate());
if (sdk >= 11) {
// AnimatedVectorDrawableCompat only works on API v11+
manager.addDelegate("animated-vector", new AvdcInflateDelegate());
}
}
That should 21 not 23 to be in line with the comment.