I am making a pebble watch app which downloads an image using netdownload.c from pebble-faces. Because netdownload.c registers appmessage handlers in initialization routine and I never call de-init, I thought that any message that I send from my Android app will reach the netdownload_receive() function. But this doesnt happen although the image download is successful. I think the code should print the log from this line in netdownload.com:
APP_LOG(APP_LOG_LEVEL_WARNING, "Unknown key in dict: %lu", tuple->key);
but it never does. Am I missing something? How do I get the message to watch app? Do I have to register appmessage routines again in my watch app even if netdownload is registering them?