我不想爲我的科爾多瓦項目(Android和iOS)啓動一個閃屏,如何刪除它?我試圖禁用啓動畫面插件,但它繼續出現!怎麼解決?科爾多瓦 - 如何沒有啓動畫面?
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" id="app.appname" version="1.0.0">
<name>App name</name>
<description>
App name description
</description>
<author email="[email protected]" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html"/>
<plugin name="cordova-plugin-whitelist" spec="1"/>
<access origin="*"/>
<allow-intent href="http://*/*"/>
<allow-intent href="https://*/*"/>
<allow-intent href="tel:*"/>
<allow-intent href="sms:*"/>
<allow-intent href="mailto:*"/>
<allow-intent href="geo:*"/>
<platform name="android">
<allow-intent href="market:*"/>
</platform>
<platform name="ios">
<allow-intent href="itms:*"/>
<allow-intent href="itms-apps:*"/>
</platform>
<preference name="SplashScreen" value="none"/>
</widget>
在iOS系統中會有用戶徵用應用程序加載的領帶和準備運行的應用程序啓動廣告領帶過程中會出現一個啓動畫面。這不是一個「閃屏」,一些應用程序在啓動屏幕後也有一個啓動畫面,蘋果不鼓勵這種方式。 – zaph
您可以直接嘗試從android和ios的源代碼中刪除/修改。 –
@SanifSS我不相信這麼簡單和微不足道的事情,我必須這樣做...... – Joy