I'm running a play framework application on a Rapsberry Pi (so ARM) and I'm getting the following error:
Cannot load the JNotify native library (/usr/lib/libjnotify.so: /usr/lib/libjnotify.so: cannot open shared object file: No such file or directory (Possible cause: can't load IA 32-bit .so on a ARM-bit platform))
Play will check file changes for each request, so expect degraded reloading performace.
I read here that I have to install the jnotify library. So I downloaded it from Source Forge and put the libjnotify.so
in /urs/lib/. Do I need to do any further steps than just copying the library?
Even after a reboot the error message remains. I also changed the owner and group of the library to root (as all other libraries had these rights). Giving every user all rights does help neither.
Moreover, I found this question. The answer suggests to remove all whitespace from the path. But in my case there is no directory and no file having any whitespace in it's name.
Does anybody know why the Play Framework still cpmplains about the missing library? I'm looking forward to your answers, thanks :)