PhoneGap RevMob プラグインを iOS で動作させることができないようです。Github ページのインストール手順に従いましたが、アプリに広告が表示されません。私の index.html コードは次のとおりです。
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<title>Hello World</title>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" charset="utf-8">
function onDeviceReady() {
RevMob.initWithAppId("APP-ID");
}
function onBodyLoad() {
document.addEventListener("deviceready", onDeviceReady, false);
}
</script>
</head>
<body onLoad="onBodyLoad()">
</body>
revmob.js ファイルがアプリに読み込まれていないようです。私が間違っていることを教えてください。
PS: Phonegap 3.5 を使用しています。