如何在我的 android 应用程序中显示 revmob 广告

How to show revmob ads in my air for android app

我正在用 flash cs6 制作一个 android 应用程序,我想在其中放一些广告。我发现 revmob 附带了我能找到的最具体的指南。 http://sdk.revmobmobileadnetwork.com/air.html#download

在 android 位中表示:'Add the required permission in your AndroidManifest.xml file by putting the following code inside the tag.'

我在哪里可以找到 AndroidManifest.xml?

我现在听起来很笨,但我是否应该以某种方式在 eclipse 中打开我的 adobe air 应用程序,或者我的应用程序是否已准备好上传到 google 播放,当我发布时它来自闪存?

我是否需要在 google play 上上传我的应用程序才能开始在我的应用程序中测试广告?

我需要升级air 3.2吗?

非常欢迎任何其他关于如何在我的应用程序中获取广告的具体和基本指南。

我认为很难找到我需要的明确指导。提前致谢。

我以前从未使用过 xml 文件,所以我不知道在哪里插入来自 revMob 的文本。 这是我的 xml:

<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<application xmlns="http://ns.adobe.com/air/application/3.2">
<id>GalaxyChallenge</id>
<versionNumber>1.0.0</versionNumber>
<versionLabel/>
<filename>Galaxy Challenge3</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>Galaxy Challenge3</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>Galaxy%20Challenge.swf</content>
<systemChrome>standard</systemChrome>
<transparent>false</transparent>
<visible>true</visible>
<fullScreen>true</fullScreen>
<aspectRatio>landscape</aspectRatio>
<renderMode>gpu</renderMode>
<autoOrients>false</autoOrients></initialWindow>
<icon>
<image36x36>ICONS/NEW%20NEW%20IC/Icon_bigbig/sizes/Icon_bigbig-36.png</image36x36>
<image48x48>ICONS/NEW%20NEW%20IC/Icon_bigbig/sizes/Icon_bigbig- 48.png</image48x48>
<image72x72>ICONS/NEW%20NEW%20IC/Icon_bigbig/sizes/Icon_bigbig-72.png</image72x72>
</icon>
<customUpdateUI>false</customUpdateUI>
<allowBrowserInvocation>false</allowBrowserInvocation>
<extensions>
<extensionID>com.revmob.airextension</extensionID>
</extensions>
<supportedLanguages>en</supportedLanguages>
</application>

这是要添加的代码

<!-- Required -->
<uses-permission android:name="android.permission.INTERNET"/>

<application>
<activity android:name="com.revmob.ads.fullscreen.FullscreenActivity"
          android:theme="@android:style/Theme.Translucent"
          android:configChanges="keyboardHidden|orientation">
</activity>
</application>

当您首次发布您的应用程序时,您应该会创建一个名为 YourAppName-app.xml 的 xml 文件。这是 AndroidManifest.xml

您可以在不上传到 Google Play 的情况下测试广告。

您最好使用 labs.adobe.com 的最新 AIR SDK,现在是 17.0.0.123