I’ve written macOS application by kotlin-native. I...
# kotlin-native
a
I’ve written macOS application by kotlin-native. If I install the application from standard path -
/Applications/myapp.app/Contents/MacOS/myapp.kexe
- I see blurred image (see the first image). If I move
/Applications/myapp.app
into home and run
~/myapp.app/Contents/MacOS/myapp.kexe
- I see the same. If I rename
~/myapp.app
to
~/myapp
and run
~/myapp/Contents/MacOS/myapp.kexe
- I see ok image (see the second image) What do I wrong? How can I fix it?
e
your app's Info.plist needs
Copy code
<key>NSHighResolutionCapable</key>
<true/>
🍾 1
a
Great thanks!