misaka19002

Results 3 comments of misaka19002

@abueide Have u solved the problem? I have the same error . Exception in thread "JavaFX Application Thread" java.lang.IllegalAccessError: class kotlin.coroutines.jvm.internal.DebugProbesKt (in module kotlin.stdlib) cannot access class kotlinx.coroutines.debug.internal.DebugProbesImpl (in module...

@p-schneider thx. config below: application { ....... applicationDefaultJvmArgs = listOf("--add-reads", "kotlin.stdlib=kotlinx.coroutines.core.jvm") } When i click debug, i can be executed. ![image](https://user-images.githubusercontent.com/14154704/125245687-71f25700-e323-11eb-8ff3-43843ec5b3a8.png) But when i click run, it still throws an...

``` void main() { runApp(const MyApp()); } class MyApp extends StatelessWidget { const MyApp({super.key}); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp(...