You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
..importandroidx.compose.ui.graphics.vector.ImageVectorimportandroidx.compose.ui.graphics.vector.ImageVector.Builder..publicvalIcons.Coin:ImageVector
get() {
if (_coin!=null) {
return_coin!!
}
_coin=Builder(
name ="Coin",
defaultWidth =24.0.dp,
defaultHeight =24.0.dp,
..
The static import of the Builder here causes the following Compile Time Exception:
<classpath>/icons/CoinKt.java:5: error: cannot access Builder
import androidx.compose.ui.graphics.vector.ImageVector.Builder;
^
bad class file: /Users/nik/.gradle/caches/transforms-3/bd3521848bdffd1987d2b8593e215954/transformed/jetified-ui-1.3.0-api.jar(/androidx/compose/ui/graphics/vector/ImageVector$Builder.class)
undeclared type variable: T
Please remove or make sure it appears in the correct subdirectory of the classpath.
By removing the static import and using _coin = ImageVector.Builder( ... it works fine.
The text was updated successfully, but these errors were encountered:
For a generated file:
The static import of the Builder here causes the following Compile Time Exception:
By removing the static import and using
_coin = ImageVector.Builder( ...
it works fine.The text was updated successfully, but these errors were encountered: