Hello there i am starting my first project with kotlin multi platform
i am trying to add material3 dependency by adding this
implementation(libs.androidx.material3.android)
into
commonMain.dependencies {...}
unfortunately thats didn’t work successfully with failure in those tasks
Task :composeApp:transformNativeMainCInteropDependenciesMetadataForIde FAILED
Task :composeApp:transformAppleMainCInteropDependenciesMetadataForIde FAILED
Task :composeApp:transformIosMainCInteropDependenciesMetadataForIde FAILED
Task :composeApp:transformNativeTestCInteropDependenciesMetadataForIde FAILED
Task :composeApp:transformAppleTestCInteropDependenciesMetadataForIde FAILED
Task :composeApp:transformIosTestCInteropDependenciesMetadataForIde FAILED
i have try to add this into
androidMain.dependencies {..}
and done perfectly but i need to use it in common scoope
Looking forward to your answers thanks in advance.
Wesam Altorman is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1