The code in the Readme ``` application.onLaunch = function (intent) { imageCache.initialize(); }; ``` does not work and produces an error **SimpleDraweeView was not nitialized!** This is what I used to fix the problem ``` application.on(application.launchEvent, function(args) { imageCache.initialize(); }); ```