Попытался добавить рекламу в приложение.
Вот код:

Код AS3:
import so.cuo.anes.admob.*;
var admob:Admob = Admob.getInstance();
if (admob.isSupported)
{
admob.createADView(AdSize.BANNER, "a152834c8723912");
admob.addToStage(0, 0);
admob.load(false);
};
}
else
{
trace("not support");
}

Код:
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<application xmlns="http://ns.adobe.com/air/application/13.0">
<id>admob</id>
<versionNumber>1.0.0</versionNumber>
<versionLabel/>
<filename>admob</filename>
<description/>
<!-- To localize the description, use the following format for the description element.<description><text xml:lang="en">English App description goes here</text><text xml:lang="fr">French App description goes here</text><text xml:lang="ja">Japanese App description goes here</text></description>-->
<name>admob</name>
<!-- To localize the name, use the following format for the name element.<name><text xml:lang="en">English App name goes here</text><text xml:lang="fr">French App name goes here</text><text xml:lang="ja">Japanese App name goes here</text></name>-->
<copyright/>
<initialWindow>
<content>admob.swf</content>
<systemChrome>standard</systemChrome>
<transparent>false</transparent>
<visible>true</visible>
<fullScreen>true</fullScreen>
<aspectRatio>portrait</aspectRatio>
<renderMode>auto</renderMode>
<autoOrients>false</autoOrients></initialWindow>
<icon/>
<customUpdateUI>false</customUpdateUI>
<allowBrowserInvocation>false</allowBrowserInvocation>
<android>
<manifestAdditions>
<![CDATA[<manifest>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
</manifest>]]>
</manifestAdditions>
</android>
<supportedLanguages>ru</supportedLanguages>
<extensions>
<extensionID>so.cuo.ane.Admob</extensionID>
</extensions>
</application>
когда я устанавливаю приложение на телефон, баннер выдает ошибку. Как решить эту проблему?