Closed monyettenyom closed 2 years ago
Hallo, I created a Korge project on IntelliJ 2022.1. In the file build.gradle.kts IntelliJ won't recognised plugins "libs".
Is there any alternative to do otherwise? I've tried this one:
apply"<"KorgeGradlePlugin">"()
korge { id = "com.soywiz.samples.animations" targetDefault() }
but the error code showed: unsolved reference KorgeGradlePlugin.
I've tried also other method, but the error Message showed me: unsolved reference: soywiz.
Thanks and look forward to your advice
You can also use:
plugins { id("com.soywiz.korge") version "3.0.0" }
The libs error is actually a editor error but it works properly.
Hallo, I created a Korge project on IntelliJ 2022.1. In the file build.gradle.kts IntelliJ won't recognised plugins "libs".
Is there any alternative to do otherwise? I've tried this one:
apply"<"KorgeGradlePlugin">"()
korge { id = "com.soywiz.samples.animations" targetDefault() }
but the error code showed: unsolved reference KorgeGradlePlugin.
I've tried also other method, but the error Message showed me: unsolved reference: soywiz.
Thanks and look forward to your advice