https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
j

Jawid

05/07/2021, 3:53 PM
Does anyone know how to fix
The feature "multi platform projects" is experimental and should be enabled explicitly
warning in IntelliJ IDEA (Android Studio)? Thanks
t

Tiago Nunes

05/07/2021, 4:16 PM
Add this to gradle.properties:
Copy code
kotlin.mpp.stability.nowarn=true
j

Jawid

05/07/2021, 5:52 PM
Thanks a bunch, @Tiago Nunes. I added the above code snippet in the project gradle.properties file, but unfortunately it didn't work. Do you have any other suggestions?
t

Tiago Nunes

05/07/2021, 6:01 PM
Oh, thought you were talking about the warning that appears when building the project. Have you tried this solution? https://stackoverflow.com/questions/48852066/kotlin-multi-platform-feature
200 Views