stars-one

Results 29 comments of stars-one

这个是依赖冲突了,我项目里用了zxing-lite库,导致这个问题,强制固定使用某个版本就可以了 可以搜一下当前所有的依赖(左侧项目资源管理器最下面的菜单) ![](https://img2022.cnblogs.com/blog/1210268/202202/1210268-20220211181655128-727158747.png) 然后排查下,看看固定使用说明版本即可 ``` configurations.all { resolutionStrategy { force 'androidx.camera:camera-view:1.0.0-alpha27' force 'androidx.camera:camera-core:1.0.1' force 'androidx.camera:camera-camera2:1.0.1' force 'androidx.camera:camera-lifecycle:1.0.1' } } ``` ![](https://img2022.cnblogs.com/blog/1210268/202202/1210268-20220211181500445-78366910.png)

Hey,**this project only supprot jdk8**,not supprot jdk11,Please see the readme please use jdk8 to run the application the author has worked to [tornadofx2](https://github.com/edvin/tornadofx2) to support jdk9+

do you success?The IDEA show me a error that `Suspend function 'delay' should be called only from a coroutine or another suspend function` when I use the method named `delay`...

yes,I know the `Dispatchers.UI`,It also show the same error tip.I just want to finish a simple example. I use the kotlin verison 1.3.70,maybe the reason is the version of idea?my...

I think [Jitpack website](https://jitpack.io/) is a easier way than publishing in the maven central. You can publish a java/kotlin library in this website by creating a release in github,Why not...

> If I understand correctly, the reason for this is because `JFXAlert` doesn't use `ButtonType`s. Through a series of events native to `Dialog`, the `ButtonData.CANCEL_CLOSE` is returned because no result...

那个蓝奏云下载地址就是打包好的jar包文件。。

如果把Java环境封装在里面,体积太大了,自己安装好java环境吧

> > 如果把Java环境封装在里面,体积太大了,自己安装好java环境吧 > > 请问一下 打包流程是啥,能否提供一下命令 ,我这边打包(mvn clean kotlin:compile package -Dmaven.test.skip=true > )会报错 > > class tornadofx.UIComponent, unresolved supertypes: javafx.event.EventTarget > class tornadofx.App, unresolved supertypes: javafx.application.Application > class tornadofx.FXTask,...