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

如何在android应用程序的my air中显示revmob广告,android,flash,air,adobe,revmob,Android,Flash,Air,Adobe,Revmob,我正在用flash cs6制作一个android应用程序,我想在其中放一些广告。我发现revmob提供了我能找到的最具体的指南 在android位中,它说:“通过将以下代码放入标记中,在AndroidManifest.xml文件中添加所需的权限。” 在哪里可以找到AndroidManifest.xml 我现在听起来很傻,但我应该在eclipse中以某种方式打开我的AdobeAIR应用程序吗,或者当我从flash发布它时,我的应用程序准备好上传到google play了吗 在我开始测试应用程序中的

我正在用flash cs6制作一个android应用程序,我想在其中放一些广告。我发现revmob提供了我能找到的最具体的指南

在android位中,它说:“通过将以下代码放入标记中,在AndroidManifest.xml文件中添加所需的权限。”

在哪里可以找到AndroidManifest.xml

我现在听起来很傻,但我应该在eclipse中以某种方式打开我的AdobeAIR应用程序吗,或者当我从flash发布它时,我的应用程序准备好上传到google play了吗

在我开始测试应用程序中的广告之前,我是否需要将我的应用程序上传到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"/>


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

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


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

谢谢!我回家后要测试一下,我已经添加了一些xml代码,你知道它应该插入xml的什么地方吗?
<application>
<activity android:name="com.revmob.ads.fullscreen.FullscreenActivity"
          android:theme="@android:style/Theme.Translucent"
          android:configChanges="keyboardHidden|orientation">
</activity>
</application>