Reputation: 2609
I have been using the latest android support library, Gradle plugin, android Studio as they release. As with last few releases of android support library, the feature to support vectorDrawables natively was introduced and revoked with another support-lib update.
I heavily converted my project to use vectorDrawables but now i have to revert back to gradle plugin 1.5.0 that generated PNGs at build time.
Now cannot use the latest androidStudio 2.0 feature InstantRun because it requires Gradle 2.0.0 and higher.
Is it the curse of using latest features as they release?
What's the configuration to use both vectorDrawables and InstantRun at once?
Upvotes: 0
Views: 295
Reputation: 2609
I got the answer here-- AppCompat 23.3 Support Vectors no longer work?.
Just need to remove the following--
vectorDrawables.useSupportLibrary = true
Upvotes: 0