2015-04-17 44 views
2

我在iOS模擬器上運行我的應用時出現白名單錯誤。這是我這是位於客戶機/ JS /移動config.js流星mobile-config.js accessRule不工作

App.info({ 
    id: 'com.example.matt.uber', 
    name: 'über', 
    description: 'Get über power in one button click', 
    author: 'Matt Development Group', 
    email: '[email protected]', 
    website: 'http://example.com' 
}); 

// Set up resources such as icons and launch screens. 
App.icons({ 
    'iphone': 'icons/icon-60.png', 
    'iphone_2x': 'icons/[email protected]', 
    // ... more screen sizes and platforms ... 
}); 

App.launchScreens({ 
    'iphone': 'splash/Default~iphone.png', 
    'iphone_2x': 'splash/[email protected]~iphone.png', 
    // ... more screen sizes and platforms ... 
}); 

App.accessRule('*'); 

但訪問規則不更新科爾多瓦的新accessRule自動生成config.xml文件移動config.js文件。

UPDATE:

我感動的配置,mobile.js到我的流星項目的根目錄下。現在,config.xml正在使用「*」訪問規則進行更新。但我仍然在模擬器中發現白名單拒絕錯誤。請幫忙!僅在需要

回答

1

嘗試增加訪問規則:

App.accessRule('https://*.cloudfront.net/*'); 
App.accessRule('https://pbs.twimg.com/*'); 

而且更喜歡通過HTTP使用HTTPS的。