Cordova : Displaying Images CFS , 2 Apps sharing the same Database!

I have 2 apps sharing the same MongoDB , one is a web application and the other is mobile application { Meteor , Ionic and Angular } . There is no problem displaying uploaded Images either in web application or mobile app ( while using a Web browser ) , But after building iOS / Android apps , There is no images …

The image.url( ) is getting images url from the web application so i added : " http://webApp.net{{image.url()}} " to the mobile app and it works in browsers but It’s not working after build Cordova Apps …

I have added access Rules to mobile-config.js :

App.accessRule(’’);
App.accessRule("blob:
")

Any help would be appreciated , thanks .