Hello! I have kotlin multiplatform project with jv...
# gradle
p
Hello! I have kotlin multiplatform project with jvm target with 'androidx.appcompat:appcompat' as one of dependencies. The problem is that in my code I can't see elements of this dependency (for example androidx.appcompat.app.AppCompatActivity - unresolved reference). Other dependenies works well (for example 'com.google.android:android'). P.S. if change target type to android it is resolving. But I need exactly jvm target not android.
t
ehm,
appcompat
dependency is Android only and should not be available for just JVM target
🙏 1