korlibs / korge-intellij-plugin

Korge plugin for IntelliJ, featuring project wizard and some actions
https://plugins.jetbrains.com/plugin/9676-korge/
Other
13 stars 8 forks source link

build.gradle.kts libs #43

Closed monyettenyom closed 2 years ago

monyettenyom commented 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".

Bildschirmfoto 2022-08-25 um 13 12 18 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

soywiz commented 2 years ago

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.