|
I have been looking into exporting assets for a project in the ImageVector format, but it appears ImageVector slows down the compilation time significantly. Is anyone able to offer an explanation for this? The two big plus's to using ImageVector is
Is the compilation time so much slow that it offsets these benefits? |
Answered by
egorikftp
Oct 17, 2025
Replies: 2 comments 3 replies
|
Hello, thanks for the question. The provided link shows that Google has stopped supporting its own material icons in I don't have a benchmark for the increase in compilation time when using ImageVector. Key
|
2 replies
|
@fergdev
|
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The current Gradle tooling allows for effectively caching code between compilations. You can extract icons into a separate module and gain all the benefits of this feature. For example
U…