Air Auto Update Error -- Flash Builder Burrito.

This is my first attempt at this, so I may be missing something simple.
I'm not having any luck getting an Air app to automatically update.
If I manually go to  http://localhost/air1/air1.air and redownload the file I will get a popup that asks if I want to update the app, but when I say ok I get this error.
"There was an error checking for updates. Error# 16816"
I haven't found a reason yet,
Any ideas?
update.xml
<?xml version="1.0" encoding="UTF-8"?>
<update xmlns="http://ns.adobe.com/air/framework/update/description/2.5">
  <version>2.0</version>
  <url>http://localhost/air1/air1.air</url>
  <description>1.0 - First version</description>
</update>
file -- air1.mxml
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                       xmlns:s="library://ns.adobe.com/flex/spark"
                       xmlns:mx="library://ns.adobe.com/flex/mx"
                       applicationComplete="init()">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
        <![CDATA[
            import air.update.events.UpdateEvent;
            import air.update.ApplicationUpdaterUI;
            import mx.controls.Alert;
            protected var appUpdater:ApplicationUpdaterUI = new ApplicationUpdaterUI(); // Used for auto-update
            protected function init():void
                // Check for update
                this.checkUpdate();
                Alert.show("checking update");
            // This function is triggered when the application finished loading.
            // Initialize appUpdater and set some properties
            protected function checkUpdate():void
                // set the URL for the update.xml file
                appUpdater.updateURL = "http://localhost/air1/update.xml";
                appUpdater.addEventListener(UpdateEvent.INITIALIZED, onUpdate);
                appUpdater.addEventListener(ErrorEvent.ERROR, onUpdaterError);
                // Hide the dialog asking for permission for checking for a new update.
                // If you want to see it just leave the default value (or set true).
                appUpdater.isCheckForUpdateVisible = true;
                appUpdater.initialize();
            // Handler function triggered by the ApplicationUpdater.initialize.
            // The updater was initialized and it is ready to take commands.
            protected function onUpdate(event:UpdateEvent):void
                // start the process of checking for a new update and to install
                appUpdater.checkNow();
            // Handler function for error events triggered by the ApplicationUpdater.initialize
            protected function onUpdaterError(event:ErrorEvent):void
                Alert.show(event.toString());
        ]]>
    </fx:Script>
    <s:Button x="47" y="55" label="Button"/>
    <mx:ColorPicker x="61" y="119"/>
    <s:ComboBox x="77" y="216"/>
    <s:ComboBox x="77" y="185"/>
    <s:ComboBox x="77" y="154"/>
</s:WindowedApplication>
file  -- air1-app.xml
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<application xmlns="http://ns.adobe.com/air/application/2.5">
<!-- Adobe AIR Application Descriptor File Template.
    Specifies parameters for identifying, installing, and launching AIR applications.
    xmlns - The Adobe AIR namespace: http://ns.adobe.com/air/application/2.5
            The last segment of the namespace specifies the version
            of the AIR runtime required for this application to run.
    minimumPatchLevel - The minimum patch level of the AIR runtime required to run
            the application. Optional.
-->
    <!-- A universally unique application identifier. Must be unique across all AIR applications.
    Using a reverse DNS-style name as the id is recommended. (Eg. com.example.ExampleApplication.) Required. -->
    <id>air1</id>
    <!-- Used as the filename for the application. Required. -->
    <filename>air1</filename>
    <!-- The name that is displayed in the AIR application installer.
    May have multiple values for each language. See samples or xsd schema file. Optional. -->
    <name>air1</name>
    <!-- A string value of the format <0-999>.<0-999>.<0-999> that represents application version which can be used to check for application upgrade.
    Values can also be 1-part or 2-part. It is not necessary to have a 3-part value.
    An updated version of application must have a versionNumber value higher than the previous version. Required for namespace >= 2.5 . -->
    <versionNumber>2.0.0</versionNumber>
    <!-- A string value (such as "v1", "2.5", or "Alpha 1") that represents the version of the application, as it should be shown to users. Optional. -->
    <!-- <versionLabel></versionLabel> -->
    <!-- Description, displayed in the AIR application installer.
    May have multiple values for each language. See samples or xsd schema file. Optional. -->
    <!-- <description></description> -->
    <!-- Copyright information. Optional -->
    <!-- <copyright></copyright> -->
    <!-- Publisher ID. Used if you're updating an application created prior to 1.5.3 -->
    <!-- <publisherID></publisherID> -->
    <!-- Settings for the application's initial window. Required. -->
    <initialWindow>
        <!-- The main SWF or HTML file of the application. Required. -->
        <!-- Note: In Flash Builder, the SWF reference is set automatically. -->
        <content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
        <!-- The title of the main window. Optional. -->
        <!-- <title></title> -->
        <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->
        <!-- <systemChrome></systemChrome> -->
        <!-- Whether the window is transparent. Only applicable when systemChrome is none. Optional. Default false. -->
        <!-- <transparent></transparent> -->
        <!-- Whether the window is initially visible. Optional. Default false. -->
        <!-- <visible></visible> -->
        <!-- Whether the user can minimize the window. Optional. Default true. -->
        <!-- <minimizable></minimizable> -->
        <!-- Whether the user can maximize the window. Optional. Default true. -->
        <!-- <maximizable></maximizable> -->
        <!-- Whether the user can resize the window. Optional. Default true. -->
        <!-- <resizable></resizable> -->
        <!-- The window's initial width in pixels. Optional. -->
        <!-- <width></width> -->
        <!-- The window's initial height in pixels. Optional. -->
        <!-- <height></height> -->
        <!-- The window's initial x position. Optional. -->
        <!-- <x></x> -->
        <!-- The window's initial y position. Optional. -->
        <!-- <y></y> -->
        <!-- The window's minimum size, specified as a width/height pair in pixels, such as "400 200". Optional. -->
        <!-- <minSize></minSize> -->
        <!-- The window's initial maximum size, specified as a width/height pair in pixels, such as "1600 1200". Optional. -->
        <!-- <maxSize></maxSize> -->
    <autoOrients>false</autoOrients>
    <fullScreen>false</fullScreen>
    <visible>false</visible>
  </initialWindow>
    <!-- We recommend omitting the supportedProfiles element, -->
    <!-- which in turn permits your application to be deployed to all -->
    <!-- devices supported by AIR. If you wish to restrict deployment -->
    <!-- (i.e., to only mobile devices) then add this element and list -->
    <!-- only the profiles which your application does support. -->
    <!-- <supportedProfiles>desktop extendedDesktop mobileDevice extendedMobileDevice</supportedProfiles> -->
    <!-- The subpath of the standard default installation location to use. Optional. -->
    <!-- <installFolder></installFolder> -->
    <!-- The subpath of the Programs menu to use. (Ignored on operating systems without a Programs menu.) Optional. -->
    <!-- <programMenuFolder></programMenuFolder> -->
    <!-- The icon the system uses for the application. For at least one resolution,
    specify the path to a PNG file included in the AIR package. Optional. -->
    <!-- <icon>
        <image16x16></image16x16>
        <image32x32></image32x32>
        <image36x36></image36x36>
        <image48x48></image48x48>
        <image72x72></image72x72>
        <image128x128></image128x128>
    </icon> -->
    <!-- Whether the application handles the update when a user double-clicks an update version
    of the AIR file (true), or the default AIR application installer handles the update (false).
    Optional. Default false. -->
    <!-- <customUpdateUI></customUpdateUI> -->
    <!-- Whether the application can be launched when the user clicks a link in a web browser.
    Optional. Default false. -->
    <!-- <allowBrowserInvocation></allowBrowserInvocation> -->
    <!-- Listing of file types for which the application can register. Optional. -->
    <!-- <fileTypes> -->
        <!-- Defines one file type. Optional. -->
        <!-- <fileType> -->
            <!-- The name that the system displays for the registered file type. Required. -->
            <!-- <name></name> -->
            <!-- The extension to register. Required. -->
            <!-- <extension></extension> -->
            <!-- The description of the file type. Optional. -->
            <!-- <description></description> -->
            <!-- The MIME content type. -->
            <!-- <contentType></contentType> -->
            <!-- The icon to display for the file type. Optional. -->
            <!-- <icon>
                <image16x16></image16x16>
                <image32x32></image32x32>
                <image48x48></image48x48>
                <image128x128></image128x128>
            </icon> -->
        <!-- </fileType> -->
    <!-- </fileTypes> -->
    <!-- Specify Android specific tags that get passed to AndroidManifest.xml file. -->
    <!--<android>
        <manifestAdditions>
        <![CDATA[
            <manifest android:installLocation="auto">
                <uses-permission android:name="android.permission.INTERNET"/>
                <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
                <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
                <uses-configuration android:reqFiveWayNav="true"/>
                <supports-screens android:normalScreens="true"/>
                <uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
                <application android:enabled="true">
                    <activity android:excludeFromRecents="false">
                        <intent-filter>
                            <action android:name="android.intent.action.MAIN"/>
                            <category android:name="android.intent.category.LAUNCHER"/>
                        </intent-filter>
                    </activity>
                </application>
            </manifest>
        ]]>
        </manifestAdditions>
    </android> -->
    <!-- End of the schema for adding the android specific tags in AndroidManifest.xml file -->
</application>

This appears to be a Flex question. Please try posting to the Flex forums here http://forums.adobe.com/community/flex/flex_general_discussion for better response.

Similar Messages

  • AIR Auto update error

    Hello all,
    I am trying to build an autoupdate app in AIR using FB4. I use the code :
    import flash.system.System;
            import flash.events.ErrorEvent;
            import air.update.ApplicationUpdaterUI;
            import air.update.events.UpdateEvent;
            [Bindable]
            private var appUpdater:ApplicationUpdaterUI = new ApplicationUpdaterUI();
    protected function checkForUpdate():void {
                NativeApplication.nativeApplication.addEventListener( Event.EXITING,
                    function(e:Event):void {
                        var opened:Array = NativeApplication.nativeApplication.openedWindows;
                        for (var i:int = 0; i < opened.length; i ++) {
                            opened[i].close();
                setApplicationVersion();
                appUpdater.updateURL = "http://localhost/updateTest/update.xml";
                appUpdater.isCheckForUpdateVisible = false;
                appUpdater.addEventListener(UpdateEvent.INITIALIZED, onUpdate);
                appUpdater.addEventListener(ErrorEvent.ERROR, onError);
                appUpdater.initialize();
            protected function onError(event:ErrorEvent):void {
                Alert.show(event.toString());
            protected function onUpdate(event:UpdateEvent):void {
                appUpdater.checkNow();
            protected function setApplicationVersion():void {
                var appXML:XML = NativeApplication.nativeApplication.applicationDescriptor;
                var ns:Namespace = appXML.namespace();
                ver.text = "Current version is " + appXML.ns::version;
    whats wrong in the above code.... when the checkForUpdate function initiated an error occured :
    TypeError: Error #1007: Instantiation attempted on a non-constructor.
        at mx.controls::ProgressBar/createChildren()
        at mx.core::UIComponent/initialize()[E:\dev\beta1\frameworks\projects\framework\src\mx\core\ UIComponent.as:6510]
        at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\beta1\frameworks\projects\ framework\src\mx\core\UIComponent.as:6402]
        at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\beta1\frameworks\projects\ framework\src\mx\core\Container.as:3879]
        at mx.core::Container/addChildAt()[E:\dev\beta1\frameworks\projects\framework\src\mx\core\Co ntainer.as:2541]
        at mx.core::Container/addChild()[E:\dev\beta1\frameworks\projects\framework\src\mx\core\Cont ainer.as:2459]
        at ApplicationUpdaterDialogs/_ApplicationUpdaterDialogs_ApplicationUpdaterVBox10_c()
        at mx.core::DeferredInstanceFromFunction/getInstance()[E:\dev\beta1\frameworks\projects\fram ework\src\mx\core\DeferredInstanceFromFunction.as:105]
        at mx.states::AddChild/createInstance()
        at mx.states::AddChild/set targetFactory()
        at ApplicationUpdaterDialogs/_ApplicationUpdaterDialogs_AddChild8_i()
        at ApplicationUpdaterDialogs/_ApplicationUpdaterDialogs_State7_c()
        at ApplicationUpdaterDialogs()
        at _ApplicationUpdaterDialogs_mx_managers_SystemManager/create()
        at mx.managers::SystemManager/initializeTopLevelWindow()[E:\dev\beta1\frameworks\projects\fr amework\src\mx\managers\SystemManager.as:3581]
        at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::docFrameHandler()[E:\dev\beta1\frameworks\proj ects\framework\src\mx\managers\SystemManager.as:3400]
        at mx.managers::SystemManager/docFrameListener()[E:\dev\beta1\frameworks\projects\framework\ src\mx\managers\SystemManager.as:3258]

    Just Got The Solution for Error 16811 &  16816
    Note Following things to avoide update error
    No 1.>
    You xml schema for update descriptor.xml in  server should look similar to this
    <?xml version="1.0" encoding="utf-8"?>
    <update xmlns="http://ns.adobe.com/air/framework/update/description/2.5">
      <versionNumber>2.0</versionNumber>
      <url>http://localhost/SerialHunter/SerialHunter.air</url>
      <description><![CDATA[
    SerialHunter Version 2.0 by Rajendra Khope
    This new version includes:
        * AutoUpdate
        * Enhaced UI functions
        * Ability to add providers       
      ]]></description>
    </update>
    Note xmlns="http://ns.adobe.com/air/framework/update/description/2.5"
    and versionNumber instead of version
    Also make similar changes in appxml version field (in Burrito its by default versionNumber )
    No 2>
    if u are using code to display veesion number make sure it should look like:
    var appXML:XML = NativeApplication.nativeApplication.applicationDescriptor;
    var ns:Namespace = appXML.namespace();
    pnlMain.title=appXML.ns::name+" v "+appXML.ns::versionNumber
    Thats it...!
    Rajendra Khope
    bkrajendra at gmail dot com

  • AIR auto update error, and question about POST parameters

    Hello,
    I'm getting a Download Failed error in the AIR autoupdating process;
    There was an error downloading the update. Error# 16822
    I recall this working once, the very first time that I tried it.
    My app.xml file contains this line:
        <version>12</version>
    and my update.xml file contains:
    <update xmlns="http://ns.adobe.com/air/framework/update/description/1.0">
      <version>12</version>
      <url>http:/players.biemedia.com/ooyala/Composer/Composer.air</url>
      <description>12 - Bug fixes and prepopulating defaults for player creation screen</description>
    </update>
    Pasting the URL into a browser works.
    However, this stuffresides on cloudfront.  in the past i have noticed that if something tries to send post parameters along with the request, cloudfront will deny the request.  Is it possible that the AIR app is sending POST parameters when hitting the download URL, and could this behavior be new in the last 6 months or so?
    Any other ideas?
    Thanks,
    Gerry

    Just Got The Solution for Error 16811 &  16816
    Note Following things to avoide update error
    No 1.>
    You xml schema for update descriptor.xml in  server should look similar to this
    <?xml version="1.0" encoding="utf-8"?>
    <update xmlns="http://ns.adobe.com/air/framework/update/description/2.5">
      <versionNumber>2.0</versionNumber>
      <url>http://localhost/SerialHunter/SerialHunter.air</url>
      <description><![CDATA[
    SerialHunter Version 2.0 by Rajendra Khope
    This new version includes:
        * AutoUpdate
        * Enhaced UI functions
        * Ability to add providers       
      ]]></description>
    </update>
    Note xmlns="http://ns.adobe.com/air/framework/update/description/2.5"
    and versionNumber instead of version
    Also make similar changes in appxml version field (in Burrito its by default versionNumber )
    No 2>
    if u are using code to display veesion number make sure it should look like:
    var appXML:XML = NativeApplication.nativeApplication.applicationDescriptor;
    var ns:Namespace = appXML.namespace();
    pnlMain.title=appXML.ns::name+" v "+appXML.ns::versionNumber
    Thats it...!
    Rajendra Khope
    bkrajendra at gmail dot com

  • Flash Builder Burrito 'unable to resolve ... for transcoding' error css file

    Hi,
    I am trying to dip my toes into the waters of mobile development with the preview release of flash builder burrito.
    I am doing so by trying to port over an application I have built in Flash Builder 4 for the web, by bringing it into a mobile app piece by piece, using the view stack struture peculiar to mobile apps.
    I am haivng an issue with my untouched css file that I am trying to use in the app. It's a direct copy from the other app in the same directory structure and yet I have declarations of embedded images of the form:
    .topLogo {
        url: Embed(source="assets/images/header-logo.png");
    Which continually cause:
    unable to resolve '/assets/css/assets/images/header-logo.png' for transcoding     Flex Style Problem
    errors.
    It is drving me utterly nuts. The images are there, and if I change the path to an invalid one I get a proper error in the editor, so it IS resolving them, but then these transcoding errors come up and seem to be triggering repeatedly as the problems pane keeps taking the focus away from the editor.
    It's driving me nuts.
    Anyone know if I've missed something?

    Problem solved by turning off Design View (which we never use anyway, useless thing for OO style programming), it's on by default with a new install of Flash builder.
    The mobile app looks promising, just waiting on a developer license to see how it goes on an iPad

  • Flash Builder Burrito - Enabled Geolocation in running device?

    Hi, I am developing a simple app that will show user's geolocation in the map.
    I use code like this:
    protected function view1_creationCompleteHandler(event:FlexEvent):void
         if( Geolocation.isSupported )
               g = new Geolocation();
               g.setRequestedUpdateInterval(100);
               if( g.muted )
                   // Don't do anything if device's sensor is muted.
                    return;
               g.addEventListener(GeolocationEvent.UPDATE,geoLocation_UpdateHandler,false,0,true);
    Then I modified application.xml in project like this (following Ryan Strewart's video in Adobe TV):
    <android>
        <manifestAdditions><![CDATA[
        <manifest android:installLocation="auto">
            <!-- See the Adobe AIR documentation for more information about setting Google Android permissions -->
            <uses-permission android:name="android.permission.INTERNET"/>
            <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
            <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
            <uses-configuration android:reqFiveWayNav="true"/>
            <supports-screens android:normalScreens="true"/>
            <uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
        </manifest>
    ]]></manifestAdditions>
      </android>
    Then I use Flash Builder Burrito to install and run application into device. The Geolocation object is muted. Even I turn on all geolocation setting. An interesting thing is, Geolocation is work in Flex de tour Mobile application.
    I use Samsung Galaxy S with Froyo 2.2

    I was able to test the Geolocation object successfully on a Motorola Droid using the following code:
    GeoTest1.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:MobileApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                         xmlns:s="library://ns.adobe.com/flex/spark" firstView="views.GeoTest1Home">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
    </s:MobileApplication>
    GeoTest1Home.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark" title="Home"
            creationComplete="view1_creationCompleteHandler(event)">
        <fx:Script>
            <![CDATA[
                import flash.sensors.Geolocation;
                import mx.events.FlexEvent;
                private var g:Geolocation;
                protected function view1_creationCompleteHandler(event:FlexEvent):void
                    if( Geolocation.isSupported )
                        g = new Geolocation();
                        g.setRequestedUpdateInterval(100);
                        if( g.muted )
                            // Don't do anything if device's sensor is muted.
                            msg.text = "geo muted";
                            return;
                        msg.text = "geo active";
                        g.addEventListener(GeolocationEvent.UPDATE,geoLocation_UpdateHandler, false,0,true);
                protected function geoLocation_UpdateHandler(event:Event):void
                    msg.text += "\ngeolocation updated";
            ]]>
        </fx:Script>
        <s:Label id="msg" text="foo"/>
    </s:View>
    GeoTest1-app.xml
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/2.6">
         <id>GeoTest1</id>
         <filename>GeoTest1</filename>
         <name>GeoTest1</name>
         <versionNumber>1.0.0</versionNumber>
         <initialWindow>
              <content>[This value will be overwritten by Flash Builder in the output app.xml]</content>
         </initialWindow>
         <android>
              <manifestAdditions>
              <![CDATA[
                   <manifest android:installLocation="auto">
                        <uses-permission android:name="android.permission.INTERNET"/>
                        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
                        <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
                        <uses-configuration android:reqFiveWayNav="true"/>
                        <supports-screens android:normalScreens="true"/>
                        <uses-feature android:required="true" android:name="android.hardware.touchscreen.multitouch"/>
                        <application android:enabled="true">
                             <activity android:excludeFromRecents="false">
                                  <intent-filter>
                                       <action android:name="android.intent.action.MAIN"/>
                                       <category android:name="android.intent.category.LAUNCHER"/>
                                  </intent-filter>
                             </activity>
                        </application>
                   </manifest>
              ]]>
              </manifestAdditions>
         </android>
    </application>
    Please try the above and see if it works.
    -- Tom
    Flex SDK engineer

  • Can't install Flash Builder Burrito

    I can't install Flash Builder Burrito on my 64 bit Windows 7 PC. I  have the CS5 Master Suite installed and AIR and Flash latest versions.  Is there anyway to get this installed so I can do mobile development?
    Here's the error info:
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 17 error(s), 18 warning(s)
    WARNING: Payload {7E5AA19B-0B85-4f44-BA26-728851489200} Adobe Flash Player 10 ActiveX is already installed and the session payload {0B0C731E-5584-4980-A0D2-4ADC89220426} Adobe Flash Player 10 ActiveX has no upgrage/conflict relationship with it.
    WARNING: Payload {177E1CA1-14CC-4398-AB15-A5746EFE8F22} Adobe Flash Builder is already installed and the session payload {45CDBACA-8B52-4DAE-9601-287907A155BF} Adobe Flash Builder has no upgrage/conflict relationship with it.
    WARNING: Payload {40F95A03-885A-45fb-9A14-486BEFEDDF34} Adobe Flash Player 10 Plugin is already installed and the session payload {A05D4EC5-033E-4446-9D96-1698FE490147} Adobe Flash Player 10 Plugin has no upgrage/conflict relationship with it.
    WARNING: Warning: {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5} Adobe Player for Embedding will not be repaired, due to updated patch of STI and one of the top level payload is being installed.
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Warning: {2F6B67F4-A2BB-45D7-A80C-25FF646CC1C5} Adobe Player for Embedding will not be repaired, due to updated patch of STI and one of the top level payload is being installed.
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    WARNING: Payload cannot be installed due to dependent operation failure
    ERROR: Verifying payload integerity : Failed with code 1
    ERROR: MsiConfigureProductEx failed with error: 1612
    ERROR: The following payload errors were found during install:
    ERROR:  - Microsoft_VC90_ATL_x86: Install failed
    ERROR:  - Microsoft_VC90_CRT_x86: Install failed
    ERROR:  - Adobe Flash Player 10 ActiveX: Install failed
    ERROR:  - Microsoft_VC80_ATL_x86: Install failed
    ERROR:  - AdobeHelp: Install failed
    ERROR:  - Adobe Flash Builder: Install failed
    ERROR:  - Microsoft_VC90_MFC_x86: Install failed
    ERROR:  - Suite Shared Configuration CS5: Install failed
    ERROR:  - AdobeTypeSupport CS5: Install failed
    ERROR:  - Microsoft_VC80_CRT_x86: Install failed
    ERROR:  - Adobe Flash Player 10 Plugin: Install failed
    ERROR:  - AdobeCMaps CS5: Install failed
    ERROR:  - Microsoft_VC80_MFC_x86: Install failed
    ERROR:  - Microsoft_VC80_MFCLOC_x86: Install failed

    This was fixed from a post in the correct forum.

  • Flash builder  burrito + fp11 standalone debugger

    how do i install  fp11 standalone debugger on  flash builder  burrito???

    Just Got The Solution for Error 16811 &  16816
    Note Following things to avoide update error
    No 1.>
    You xml schema for update descriptor.xml in  server should look similar to this
    <?xml version="1.0" encoding="utf-8"?>
    <update xmlns="http://ns.adobe.com/air/framework/update/description/2.5">
      <versionNumber>2.0</versionNumber>
      <url>http://localhost/SerialHunter/SerialHunter.air</url>
      <description><![CDATA[
    SerialHunter Version 2.0 by Rajendra Khope
    This new version includes:
        * AutoUpdate
        * Enhaced UI functions
        * Ability to add providers       
      ]]></description>
    </update>
    Note xmlns="http://ns.adobe.com/air/framework/update/description/2.5"
    and versionNumber instead of version
    Also make similar changes in appxml version field (in Burrito its by default versionNumber )
    No 2>
    if u are using code to display veesion number make sure it should look like:
    var appXML:XML = NativeApplication.nativeApplication.applicationDescriptor;
    var ns:Namespace = appXML.namespace();
    pnlMain.title=appXML.ns::name+" v "+appXML.ns::versionNumber
    Thats it...!
    Rajendra Khope
    bkrajendra at gmail dot com

  • Overlaying adobe air sdk 13 in flash builder 4.7

    After overlaying adobe air sdk 13 in flash builder 4.7 I have followed the step mentioned on adobe site.
    i am getting lots of error in flash builder 4.7 after overlaying.
    Can anyone please suggest me how to get it done for flex mobile project.

    You are probably missing the updated flash debug player that describes all the new methods to the application.
    There is a good walkthrough of how to upgrade flash builder to a new library version, this is described in the first video of hsharma's starling tutorials.
    Its very annoying though, i wish adobe would really build in a feature like this to update libraries.

  • Flash Builder Burrito, Random Crash in Debug Build

    Hello:
    I have been working with Flash Builder Burrito for about a week. When I publish it to the Xoom device in debug mode, it will crash at random. When I publish it as a normal build, it works great.
    I'm not sure if it's actually a crash or it loses the Wi-Fi connection to the device and just quits out?
    I get no errors to the Debug window when it just random quits the app.
    I would suggest it's a coding error but it is just sitting at a simple MXML screen and not doing anything in the background. Plus it works when I do a normal build with out the Debug console.
    My guess is there is a packet loss or something and it quits out?

    This is a bug in AIR on the Xoom device.  As you pointed out it only happens when debugging.  We're aware of the issue and working on a fix, you can track the progress on this bug: http://bugs.adobe.com/jira/browse/FB-30457

  • I get some trouble exporting  mobile  application with Android Adobe Flash Builder Burrito

    Hi, eveybody.
    I make a simple mobile application with Adobe Flash Builder Burrito, and it works well on windows.
    Then I want to export it as a .apk and install on android emulator. But I failed. I got some messages as follow:
    E:\android\a\android-sdk-windows\platform-tools>adb install Twitter.apk
    594 KB/s (875316 bytes in 1.437s)
            pkg: /data/local/tmp/Twitter.apk
    Failure [INSTALL_FAILED_INVALID_APK]
    Then, I download the AdobeAIRSDK2.6, unzip, and copy the files to the sdk(D:\Program Files\Adobe\Adobe Flash Builder Burrito\sdks\4.5.0).
    I change <application xmlns=http://ns.adobe.com/air/application/2.5> to <application xmlns="http://ns.adobe.com/air/application/2.6">.
    Then It can't export it as a .apk...
    Thanks!

    Thanks.
    But why I can't export a .apk as I update the sdk to air2.6?

  • Deployed Android project using Flash Builder Burrito not working on mobiles

    Hi,
    I have created a simple "Hello World" Application using Flash Builder Burrito SDK. I have tested the result in the emulator it is working great.
    After that i deployed the application using "Export Release Build Option" and entered valid certificate details and created the .apk file. I copied the .apk file into the device and i run the application. Iam unable to run the app. I have tried these in 3 android supported devices and in each of these i am getting different error messages. I have mentioned the device in which i have tested and the error message i got while i tried to install the app (.apk file)
    HTC Desire - "Error while parsing the package of the application"
    Samsung Galaxy Tab - "Error while parsing the package of the application"
    LG Optimus one (LG P500) - "Application not installed"
    I have created a New Mobile Project in the flash SDK and added simple label "HELLO WORLD" in the view section.
    Before deploying i have installed Adobe AIR 2.5 in the device.
    Whether iam missing any of the steps to deploy correctly in the device. If so, please let me know. Also i need to know whether any restrictions are there for applications developed using Flash Burrito Preview Release. (whether by default all android mobile version more than 2.1 will support it?)
    Also when i try to install "Tour De Mobile Flex" apk in LG Optimus, it is saying "Device not supported" message.
    How do i overcome these problems to run the apk file without any problems.
    If you need any other detail please let me know, i will explain it in detail.
    Thanks in Advance,
    Srinivasan.C

    Ok, this is an old post but i still needed a couple of hours to find a solution, so here we go:
    - Most likely you have TWO executable build targets in your project (two mxml that you can launch). If so, go to the Project settings > Flex Applications and remove the one you don't need so you only have one.
    - My case was a bit complex though - i was using an ANE and Coldfucion server. In this case change the Output folder in the Project Properties > Flex Server > Output folder to something like "temp" instead of "C:..." generated by Flex Builder. The Android device gets confused by a "C:" reference but still can understand a local "temp" folder
    I hope i have saved your day

  • Autocompletion not working in Flash Builder burrito

    Hello!
    What causes could prevent autocompletion from working in Flash Builder burrito? in flash builder 4 it works fine, but not at all in burrito. maybe I changed some settings somehow? If i open Settings->Flash Builder->Editors then "Enable Auto Activation" under "Code Assist" is checked.
    what other reason could there be for that problem?

    Hi,
    Are you using 'Flash Builder Burrito Preview'? You might have faced this known issue https://bugs.adobe.com/jira/browse/FB-28451 . This is fixed in future builds of Flash Builder.
    Workaround is, Click 'Restore defaults' in Preferences->Flash Builder->Editors->ActionScript Code->Content Assist Cycling
    Or Changing workspace.
    Let us know if this workaround solves the issue.
    -Radhakrishna

  • Purchasing Flash Builder Burrito

    Hi,
    Sorry if this is the wrong forum, but not sure where to ask. Was just wondering if Flash Builder Burrito will be released as an update for Flash Builder or if it will be a new version to purchase. I plan on purchasing Flash Builder, but wasn't sure if i should wait until Burrito is released or not.
    Thanks

    Hi,
    We have not announced pricing or availability as of yet for the upcoming version of Flash Builder.
    As the upcoming release contains new features it will be a paid upgrade from the current Flash Builder 4 release.
    Thanks,
    Andrew Shorten
    Group Product Manager, Developer Tools, Adobe

  • A puzzle game using Flash Builder Burrito

    I used the Flash Builder Burrito and AIR 2.5.1 to build a simple puzzle game for the Android market. It is called 'Ramanujam's Magic Square' and is live. Performance on Galaxy S is as good at it can be with a native app. considering that the puzzle is about number crunching.
    Here is the pic:

    it's ok, I figured it out.
    just using Flash builder 4.5 grid containers

  • Flash builder burrito

    hello
    I'm are using the flash builder burrito
    to make a few test's for android aplications.
    So my questions are
    When the final release for the burrito whe will be able to buid  aplications without adobe air requeriment?
    I ask that because on samples that i made not just one works because my android phone have a arm6 processor, so i think that
    aplications made on burrito just will work on the smartphones with arm7 processor because the air request, is correct?
    Sorry for my english
    Many thanks

    Hi Chris,
    The Burrito Preview installs to a different directory than your existing FB4 installation, by default, so there should be no conflict there. Also, it accepts the same Serial Number you have for FB4 if you purchased FB4 as an individual product.
    If you purchased FB4 as part of a CS5 Suite, there will be a site available you can use to obtain a Preview SN for Burrito, but you can still use Burrito in Trial mode until that is available.
    -Chris

Maybe you are looking for

  • WSUS Role Failing on Windows Server 2012

    Hi Team, A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote c

  • Install Dataware House on SUSE linux 9.3 with Oracle Rel 2 (9.2.0.4)

    Dear All One of my customer needs dataware house on SUSE linux and i am a core DBA working on Prod and development servers upto now. So i want to know the necessary things i need to keep in mind before going to configure datawarehouse for the custome

  • Not able to do VL09 ( Reversal forReturn Delivery)

    Dear All, While doing the VL09 for reversal of Return Delivery i am getting this error. I searched this forum, and got some solutions, but not able to understand it. Same thing i am able to do it on Development server but not on Production. PGI Rever

  • Manually sort files in a folder

    Is there anyway to sort files in a folder manually? Say I have 4 files. The would be arranged.. File A File B File C File D I want them to be File B File D File A File C Is there ANYWAY to do this? I can't sort them by size or anything like that caus

  • How to update a table containing BLOB?

    Hi, I'm trying to update two columns in a table. one is NUMBER and the other is BLOB Is there a way to do so in OCCI in a single operation ? the table looks like this: CREATE TABLE ACCUMULATORS (TARGET_SUBS NUMBER(9), ITERATOR NUMBER(9), NUMERATOR NU