-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUG: java.util.logging.Logger #377
Comments
Can you please provide a minimal repro so we can debug locally? |
I created a sample project on my private profile: https://github.com/mitch3ls/jb-compose-issue-377-demo All the necessary steps are described in main.kt edit: |
I tried the solution from #381 with both |
https://docs.oracle.com/javase/9/docs/api/module-overview-frame.html module name is |
Thank you so much, that worked! It would be great if that could be incorporated into the documentation somehow 👍 |
…e java.logging module; see: JetBrains/compose-multiplatform#377
…e() if totalLineCount() is 0 (JetBrains#377)
Please check the following ticket on YouTrack for follow-ups to this issue. GitHub issues will be closed in the coming weeks. |
Summary:
java.lang.ClassNotFoundException is thrown for java.util.logging.Logger if Logger is used in packaged application. This behavior does not occur with
gradle run
without packagingEnvironment:
OS: Windows 10 Pro 1901 18363.900
Steps to Reproduce:
gradle packageAppImage
onClick
callbackjava.util.logging.Logger("foo")
in IntelliJ's debugging panelExpected Results:
I would expect to receive a Logger object, as it would happen before packaging (with only
gradle run
)Actual Results:
ClassNotFoundException is thrown, which crashes the app outside of this debugging evaluation call
Notes:
I found this bug when I tried to use squareup's okio library in a compose project (https://square.github.io/okio/)
The text was updated successfully, but these errors were encountered: