1
I recently updated an application I am developing to use minimum API 21 (Lollipop), before it was on 19 (Kitkat).
In the case of Kitkat I needed to use Appcompat and Support Design to take advantage of Drawerlayout, Coordinatorlayout, Floatingactionbutton, etc, only in Lollipop some of these controls are natively supported.
The question is: do I need to keep referencing Appcompat and Support Design? And if so, what parts of libs?
I believe I will probably have to adapt the code for these changes.