colintheshots
02/17/2022, 7:59 PMimplementation(project(":shared"))
at the top of my Android build.gradle.kts
file’s dependencies list. The project builds and runs fine, but I get syntax errors in the IDE, Problems pane, and when I try to commit it warns me about all of the fake errors in changed files. This started when I first upgraded to Bumblebee. The same issues do not occur with any code referenced from commonMain. Does anyone have any ideas how I can resolve this?Javier
02/17/2022, 8:18 PMcolintheshots
02/17/2022, 8:18 PMcolintheshots
02/17/2022, 8:18 PMJavier
02/17/2022, 8:18 PMkotlin.mpp.enableGranularSourceSetsMetadata=true
?colintheshots
02/17/2022, 8:19 PM#Gradle
org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
#iOS
xcodeproj=./iosApp
#Kotlin
kotlin.code.style=official
kotlin.mpp.stability.nowarn=true
kotlin.mpp.enableCInteropCommonization=true
kotlin.mpp.enableGranularSourceSetsMetadata=true
kotlin.native.enableDependencyPropagation=false
#Android
android.useAndroidX=true
colintheshots
02/17/2022, 9:36 PMJavier
02/17/2022, 10:43 PMMichael Peters
02/18/2022, 7:37 AM