コマンド ライン ツールcordova-cliの使用に問題があります。
ドキュメントのすべてのステップに従いました:
$ cordova create ~/test com.test テスト
このステップでは、www
フォルダーの内容を変更します。
1-サンプル Web ページをsrc
フォルダーの下に移動します。したがって、の内容は次のwww
とおりです。
--www/ |-- config.xml |-- src/
2-config.xml を自分のデータで編集し、content
タグを次の正しいパスを指すように変更しindex.html
ます。
<widget id="com.test" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Test</name>
<description>
Test
</description>
<author email="foo@bar.com" href="http://sample.com/">
Foo Bar
</author>
<content src="src/index.html"/>
<access origin="*" />
<preference name="fullscreen" value="true" />
<preference name="webviewbounce" value="false" />
<preference name="UIWebViewBounce" value="false" />
</widget>
このファイルを変更して、(プロジェクトのルートから) 一般的な手順を続行します。
iOS プラットフォームを追加します。
$ コルドバ プラットフォーム追加 ios
次に、プロジェクトをビルドします。
$コルドバビルド
ここで、プロジェクトを開くtest/platforms/ios/test
と、次のようなデフォルト コンテンツの config.xml が表示されます。
<widget id="io.cordova.helloCordova" version="2.0.0" xmlns="http://www.w3.org/ns/widgets">
<name>Hello Cordova</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<feature name="LocalStorage">
<param name="ios-package" value="CDVLocalStorage" />
</feature>
<access origin="*" />
<preference name="KeyboardDisplayRequiresUserAction" value="true" />
<preference name="SuppressesIncrementalRendering" value="false" />
<preference name="UIWebViewBounce" value="false" />
<preference name="TopActivityIndicator" value="gray" />
<preference name="EnableLocation" value="false" />
<preference name="EnableViewportScale" value="false" />
<preference name="AutoHideSplashScreen" value="true" />
<preference name="ShowSplashScreenSpinner" value="true" />
<preference name="MediaPlaybackRequiresUserAction" value="false" />
<preference name="AllowInlineMediaPlayback" value="false" />
<preference name="OpenAllWhitelistURLsInWebView" value="false" />
<preference name="BackupWebStorage" value="cloud" />
<preference name="fullscreen" value="true" />
<preference name="webviewbounce" value="false" />
</widget>
UIWebViewBounce
プリファレンスは正しいが、タグ、およびcontent
タグが正しくないことに注意してください。author
description
name
www/index.html
その後、アプリを実行すると、 の代わりにを開こうとするため、失敗しますwww/src/index.html
。
私は何か間違ったことをしていますか?
ノート
の内容が にtest/www
正しくコピーされtest/platforms/ios/www
ます。