I have FileObserver's hooked onto a particular directory in /mnt/sdcard/X and its descendants recursively. When I modify contents of this directory from the phone itself (say from the Gallery app), the onEvent() of my FileObserver is correctly called and everything works fine.
When I connect via USB to a computer and switch to mass storage mode, all changes done via the computer to the same directory are not translated to events to the FileObserver. Is there a limitation on the FileObserver that it will not work in USB mass storage?
I tried an 'adb push xx /mnt/sdcard/X/xx' and this change gets recorded correctly too.