Skip to main content
Inspiring
May 12, 2014
Question

ANE the content can't be loaded

  • May 12, 2014
  • 1 reply
  • 1688 views

I am trying to use a native extension for AdMob, and am getting this error when debugging:

The content cannot be loaded because there was a problem loading an extension: Error: Extension namespace is invalid for C:\Users\Jayden\AppData\Local\Temp\Tmp_ANE_File_Unzipped_Packages\admob_all_in_one.ane

This topic has been closed for replies.

1 reply

sinious
Legend
May 12, 2014

In the extension portion (usually the bottom) of your apps XML please paste that extension ID.

Inspiring
May 12, 2014

I have, maybe I put it in the wrong spot? Here is my .xml file:

<?xml version="1.0" encoding="UTF-8" standalone="no" ?>

<application xmlns="http://ns.adobe.com/air/application/3.4">

  <id>jaydenmiller.colorclicker</id>

  <versionNumber>1.0.1</versionNumber>

  <versionLabel>1.0.1</versionLabel>

  <filename>Color Clicker</filename>

  <description>

    <text xml:lang="en">Color Clicker is a fast paced game where you test your agility!</text>

  </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>Color Clicker</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>Color%20Clicker.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>

    <image72x72>External%20files/game_icon.png</image72x72></icon>

  <customUpdateUI>false</customUpdateUI>

  <allowBrowserInvocation>false</allowBrowserInvocation>

  <android>

   <manifestAdditions>

      <![CDATA[

<manifest android:installLocation="auto">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>

<application>

<meta-data android:name="com.google.android.gms.version" android:value="3200000" />

<activity android:name="com.google.android.gms.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>

</application>

</manifest>

]]>

    </manifestAdditions>

  </android>

  <supportedLanguages>en</supportedLanguages>

  <extensions>

    <extensionID>so.cuo.platform.admob</extensionID>

  </extensions>

</application>