CS5.5 vs. CS5 PROBLEM with publishing Air for Android

Hello,
My Air app publishes fine to my 2.2 and 2.3 Android Phones from Adobe Flash Professional CS5 - and the app runs fine. Debugger is clean.
When publishing from CS5.5 however, it puts the app on the phone, but the screen turns black and the app quits (on HTC incredible v2.2). on The Evo 4G (v.2.3) the black screen stays up but app is unresponsive.
Is there any reason an app wouldn't function because of which version of Flash Professional (CS5 vs CS5.5) it is published from?
I've heard some people complaining that 5.5 isn't including the support files (I have an XML), but I can't see the support files or apk on my phone (utility?).
Any insight on this would be helpful.
Thanks.

Contact serial number support by web chat.
Mylenium

Similar Messages

  • Problem with adobe reader for android.

    I have set up 25 android tablets for my employees to use adobe reader. They are downloading a blank .pdf forms created with acrobat from a cloud drive (google drive) and then filling out the forms on the tablet. On 24 of the tablets, when the original form is opened from the cloud, adobe reader gives a warning that the file is "read-only" and gives the option to save a copy locally in order to be able to edit the form, or to continue and view the form as read-only. On one tablet, adobe reader skips this warning and ALWAYS opens the form as read-only. I have un-installed and re-installed adobe reader and the cloud drive multiple times. I have done factory resets and completely re-configuresd the tablet multiple times. I have even tried multiple cloud accounts to ensure that it isnt a cloud setting. The problem is isolated to this tablet, regardless of all of these "fixes" I cannot find any setting to eneble/disable this option. Any ideas as to why everything works on every other tablet, but not this one?

    The first thing I would try is a different cloud server, e.g. Workspaces at https://acrobat.com/ - just to make sure it's not Google Drive causing the problem.
    [topic moved to Android subforum]

  • Flash Professional Help | Publishing AIR for Android applications

    This question was posted in response to the following article: http://helpx.adobe.com/flash/using/publishing-air-android-applications.html

    I think that this is just saying that the display is truncated. When you publish, it still uses the full path.
    Regards,
    Randy Nielsen
    Senior Content and Community Manager
    Adobe Systems Incorporated

  • Problem with Cloud app for android

    See the attached pic - I had 3 bars of 4G and all other apps were able to connect to the net, but the Cloud app refused to believe it.  Is there a support email address I can also send this to?

    Have you tried powercycling the phone (turning it off for few seconds and turning it back on)? The cloud app should be able to determine if you're connected to the either 4G or your wifi network. If it won't work after the power cycle, you may uninstall and re-install the app.

  • Flash CC: I am having problem with publishing to Android?

    Hi,
    Is there any tutorial that explains every step for Android publishing on Flash CC? I am looking for it for the last few days with no luck.

    Flash Professional Help | Publishing AIR for Android applications

  • AIR for Android Captive Runtime

    Is it possible to package android apps with AIR (or will it be) using Flash CS5.5? I don't see anything on the web about. Just how to do it with Flex and ADT etc...

    Hi,
    I've made a complete working example for publishing an application with captive runtime, assets and native extensions starting from Flash CS5.5
    I was able to make it thanks to hints and suggestions I found in this thread.
    Note: english is not my native tongue so I hope you understand what I've written also if sometime it sounds "engrish".
    Here it is the link to the zip file:
        http://www.genereavventura.com/hosted/Air3NativeExtensions/AirVibrate.zip
    Requirements:
    - You must have Flash cs5.5 pro (obviously)
    - You must have installed the overlay for Air3.0 sdk on your Flash cs5.5 pro
    Here it is a link that explain how to accomplish it: http://forums.adobe.com/message/3939712
    Here the steps I made.
    1) Open Flash CS5.5 and create a new AIR for Android application
    2) Add the swc to the libraries used by your FLA (open Actionscript 3.0 settings and add "VibrationActionScriptLibrary.swc")
       Btw, you can find this "ready to use" native extension inside the zipfile that you can download from here: http://www.adobe.com/devnet/air/native-extensions-for-air/extensions/vibration.html
       However in my example you will find also a directory named "extension" that contains it.
    3) Open and then close the "air for android settings": by doing this Flash will create yourapp-app.xml file in the directory where your FLA resides.
       For example my fla is named "vibrate.fla" so Flash created for me a "vibrate-app.xml" file.
    4) Make a copy of this "vibrate-app.xml" file by naming it "real-vibrate-app.xml" (or choose whatever name you want)
       I've done this because after modyfing the original one by adding the <extension> tag (see below) I wasn't able to test my app from within Flash IDE (when I compile it it simply doesn't start)
       Instead by doing this all worked fine.
    5) Edit the "real-vibrate-app.xml" file by adding somewhere these lines (I added it just before the <initialWindow> tag)
        <extensions>
          <extensionID>com.adobe.Vibration</extensionID>
        </extensions>
    6) Add <uses-permission android:name="android.permission.VIBRATE"/> in the <android> <manifestAdditions> part in "real-vibrate-app.xml" file.
       You should do something like this:
       <android>
          <manifestAdditions>
            <![CDATA[<manifest>
              <uses-permission android:name="android.permission.VIBRATE"/>
            </manifest>]]>
          </manifestAdditions>
       </android>
    7) Develop your application
       I made a simple one that loads an external jpg and shows it on the stage: then the user can tap on it to make the phone vibrate.
       The function "doVibration" is called only when the app is running on Android Device so I do not get any executions error when I run the app from within Flash Ide
    8) Publish and test it to your USB connected device by launching the "publish.bat" file I have created
       Open a dos prompt and move to your project directory then type publish.bat and press enter.
       Note: it can be that you have to edit the bat file in order to change the path to the ADT tool that comes with Air3.0 sdk
       It should be in [your adobe flash cs5.5 directory]\AIR2.6\bin\adt (rememeber, you must have installed the Air3.0 sdk overlying the old Air2.6/2.7 in the AIR2.6 directory)
       Inside the bat file you can change easily the target type (captive or not) simply by commenting/decommenting the right line.
       Captive version is about 8Mb more than the normal one but the big deal is that the user that installs it do not need the air runtime installed on his phone!
       The "big line" that creates the package is the following one:
       call %ADT_LINK% -package -target %TARGET_TYPE% -storetype pkcs12 -keystore certificate/vibrate.p12 -storepass android AirVibrate.apk real-vibrate-app.xml -extdir extensions vibrate.swf icons assets
       where:
       call %ADT_LINK%          it's just the path to the ADT tool
       -package                 it's the command that we want ADT to execute
       -target %TARGET_TYPE%    captive/non captive version
       -storetype pkcs12        certificate related
       -keystore certificate/vibrate.p12  path to your self signed certificate
       -storepass android       certificate related, I created the example certificate with "android" password and this parameters tell ADT to always use it without prompting
       AirVibrate.apk           the name of the Apk
       real-vibrate-app.xml     the apk-xml to use that is the one we modified manually above
       -extdir extensions       it's the path to the directory that contains the native extension
       vibrate.swf              the main swf
       icons                    the icons directory
       assets                   the assets directory (where I put the external jpg)
    That's all.
    If everything is correct, the batch file creates the AirVibrate.apk then installs it on your attached usb device and run it.
    When you tap over the Android image that will appear, your phone should vibrate.
    Now.. does someone wants to develop a Native Extension to show Admob banners in our Android Air Applications?
    If I missed something, please let me know.
    Thanks

  • Activation fails when not anwsering an incoming call Air for Android

    Hi,
    I'm developing a game with Adobe AIR for Android; we are handling events for Deactivate (Pausing) / Activate (just tracing for now) of the game.
    It works OK when:  I press home button and then go back. When I get an incoming call and answer it. When I get an incoming call and reject it. They all activate the game when finished
    It doesn’t work when: I get an incoming call and I missed it (no answering, no rejection either) instead of activating the game again a black screen is showed (trace on Activate event is not fired either).
    Did anyone experience the same issue?
    Regards

    I tried the above case on Samsung S4(v4.2.2)(Currently I have with me) with latest AIR SDK available at http://www.adobe.com/devnet/air/air-sdk-download.html and I am getting the activate and deactivate event if I get an incoming call and I missed it. Below is the code snippet I used. Please update if you are using something different.
    stage.addEventListener(Event.ACTIVATE,onActivate);
    stage.addEventListener(Event.DEACTIVATE, onDeactivate);
    protected function onDeactivate(event:Event):void
    // TODO Auto-generated method stub
    trace("In the deactivate method..........");
    protected function onActivate(event:Event):void
    // TODO Auto-generated method stub
    trace("In the activate method...........");
    Could you please share the 3.7 version using adt -version command on either terminal or command promt. You can find adt at AIRSDK/bin folder.
    Regards,
    Nimit

  • Flash cs5.5 FLVplayback Encoding Problems with Air for Android

    Dear All,
    I'm trying to play flv in my air application by using FLV playback in flash cs5.5.
    I can play flv in the pc but not on the samsung galaxy tab andriod platform.
    if anyone out there has tried out FLV playback with either an Air For Android application, where the FLV files are packaged within the app, or either streaming via normal http//:, any help  would be greatly appreciated.
    Thanks!

    First disable autoplay. It gave errors for me. Try to make the movie play with the play() command.
    to embed the movie in your air bundle, just go to publish settings for your flash project. Then in that screen go to the player settings.
    In the first GENERAL tab you'll see a the bottom that you can add files to your project
    Propably there is allready your .swf and an .xml file in there.
    Using the + icon you can add your video.
    Make sure that your video is in the same directory as your . FLA file and you can use it as is (by name)
    If for example your flashfile is in c:\mytest\mytest.fla and the video in c:\mytest\videos\myvideo.flv , then you will have to load your video as "videos/myvideo.flv" with a FORWARD slash, never use \
    Good luck

  • Publishing AIR for iOS in Flash CS5.5 gives Java VM error

    Hi,
    I have been getting the following error when trying to publish AIR for iOS from Flash CS5.5. I'm using AIR 2.7 overlayed, Windows 7 x64.
    Any help would be greatly appreciated.
    Thanks!

    I tried overlaying the latest AIR as sinious suggested, but that only changed my error message by adding the line about ADT as in the original post.
    I was finally able to get the app to compile by calling adt from the command line.  Here is an example .bat file that worked for me:
    @echo=off
    @set java_cmd="C:\Program Files\Java\jre6\bin\java.exe"
    @set java_param=-Xmx128m -jar
    @set adt_cmd="C:\Program Files (x86)\Adobe\Adobe Flash CS5.5\AIR2.6\lib\adt.jar"
    @set target=ipa-test
    @set cert=iOS_dev.p12
    @set cert_pass=password
    @set provisioning=my_iOS_device.mobileprovision
    @set build_file=helloworld.ipa
    @set desc_files=helloworld-app.xml
    @set files=helloworld.swf AppIconsFolder
    %java_cmd% %java_param% %adt_cmd% -package -target %target% -storetype pkcs12 -keystore %cert% -storepass %cert_pass%  -provisioning-profile %provisioning% %build_file% %desc_files% %files%
    pause

  • CS5.5 Design Premium / Problems with "Apply today for its unique advantages"

    English
    Problems with "Apply today for its unique advantages," by clicking on any of the options available to redeem the link does not work.
    Spanish
    Problemas con "Solicite hoy sus ventajas exclusivas", al hacer click en cualquiera de las opciones disponibles para poder canjear no funcionan los link.

    Pat76 wrote:
    Hi, did anybody had already problems with the CS5.5 Design Premium Suite on OSX Lion? I purchased the software as a Volume licenced product recently and everything was working fine, until since few days my Indesign and Illustrator keep crashing on launch. I de-installed and re-installed the entire CS5 Suite on my iMac, but Indesign and Illustrator still keep on crashing while launching. I already rang the Adobe tech support but they are not very helpful at all... Its quite frustrating.
    No problems here with CS5. After I upgraded to Lion I did update to 5.5 and still did not experience any problems. There are some handy articlles on Adobe's web site relating to compatability with Lion, but I have experienced none. Have you checked the third party plug-ins in Illustrator and InDesign for compatability if you have any installed?
    Pete

  • How can I use a file in flash cs6 that I made in flash cs5.5 air for android

    I have made an app in in air for android in flash cs5.5 air for android, and I want to edit it in cs6 and play it in cs6.
    But if I put Ctrl+Enter I got an error: createWin process failed with error 2: system couldn't find the file. I think the problem is that I'am using air for android 2.6 version in flash cs5.5 and version 3.2 in flash cs6. I have searched the web and found out that you can add older air versions using the sdk manager and I have tried it but first I get the error that the version of the sdk I am trying to install is not valid and after some files that I added to the sdk folder I get this error:Only SDK higher than version 3.4.2540 may be added.
    I there a possible way to update the air for android for an fla or apk? Or how can I let my originally file work fine in flash cs6??

    system couldn't find the file
    If you can´t get a more specific hint why your project can´t compile then I can think of some reasons theis error might occur
    1.You had files included besides the swf, like videos, audio files, xml files, that are not present in the place air expects them to be
    2.somewhere in your createWin functions there is a class import needed that isn`t present in 3.2 anymore, for example some classes or functions from classes that were valid in 2.6 are not any more in 3.2
    3. to achieve better eror logging, allow for debugging in the publishing options and see what specific lines in your code throw the error
    4.any air app needs a cert file, this needs to be created once, if you migrated to e new system it might be you never created that file which air expects to even begin the compiling process
    once you isolate the problem, report back

  • Air for Android template missing from Flash CS5 Professional

    I am trying to get started with developing android apps in flash.  Most tutorials begin with my selecting the Air for Android template in Flash CS5 Pro.  This option is not available to me.  When I try to install the extension I get this: http://labs.adobe.com/technologies/flashpro_extensionforair/
    I am running the latest update for CS5.
    Any suggestions?
    Thanks!
    John

    Hey James,
    Thanks for the reply.  I clicked the updates button but all I can find is the trial version of CS5.5.  Is that correct?
    http://www.adobe.com/cfusion/tdrc/index.cfm?product=flash&promoid=EBYEX
    Cheers,
    John

  • The Error Message 'Application descriptor file cannot be parsed' shows when compiling (Ctrl + Enter) Adobe AIR for Android applications on Flash Professional CS5.5

    The Error Message 'Application descriptor file cannot be parsed' shows when compiling (Ctrl + Enter) Adobe AIR for Android applications on Flash Professional CS5.5
    This is happening for most of the pupils and staff at our school and they are unable to complete their work.
    This also happens on a fresh copy of windows and CS5.5 without any updates and also with all latest updates.
    I have tried it on 32-bit and 64-bit CS5, Windows, Air and Java with the same error every time.
    There are a small minority of users where this works fine for them with no issue.
    I have tried re-setting user profiles.
    I have tried a local admin and domain admin account with the same issue
    I have noticed however that if the file is moved to the shared area it will compile. If it is on their documents area it will not compile. The users have full control in both locations. This is fine for staff but we are unable to give full control or modify access to the shared area for the pupil's
    I have been through the online support section and it directed me to phone Adobe Customer care who informed me that all support has been discontinued for CS5, CS5.5 and CS6 and they will only support creative cloud.
    Any ideas what to try next? There is no other information about this error and I cannot work out what is causing it.

    I have tried and  able to package an apk using your XML file.Could you please make sure your XML file starting from line 1 and coloumn 0.Any space will results in the error (Application Descriptor file cannot be parsed)
    -Pranali

  • I need help adding admob ads to air for android flash cs5.5 app

    I would like to know how can i add admob ads in adobe flash cs5.5 air for android app without buying any extentions please tell in detail because my scripting in as3 is VERY weak, so detailed answers would be lovely.

      flash-air-admob-ane-for-ios-and-android - Admob Ane,a adobe native extention(ANE) for actionscript developer to add go…
    you need upgrade to flash cc.

  • Air for Android language problem

    i have an Air for Android APK compiled by Flash CS5.5 that shows support for languages that are not in the app. I successfully removed these in my iOS apps, but am unable to find out how to do this for Android apps. Anyone developed a process to fix this?

    I'm still having this issue with every export. This seems to be a problem that just won't die.
    Edit: This might be the answer
    http://forums.adobe.com/message/4329360#4329360

Maybe you are looking for

  • WRT120N- Cannot reset default settings

    I've browsed the forums for a possible solution to this problem.  I've tried holding the reset button for 30 sec/1min, followed by powering down for the same amount of time.  I've also tried pinging the default 192.168.1.1, and got a few messages of

  • Airplay ceases to stream iPod app from iPhone4 to ATV2, all else works

    So, I have been running the new ATV since it came out, streaming without any issues from the get-go, all streamable / Airplay content, from my iPhone4. All apps / software is UTD on all devices. After updating to the new Apple remote app, I can no lo

  • Recording with Quicktime and adding effect

    Hi all. I am recording Firewire video in Quicktime Player. The audio comes from a seperate source, through the line-in. To synchronize, I need to delay the audio by 600 ms. Does anyone have a method of doing so? I have an AU delay that would work. I

  • How to speed up Focus title in iMovie? (READ DESCRIPTION)

    I tried to speed up the Focus title in iMovie by making it shorter, but it maintained the same speed while being cut off before the text actually formed. I cannot speed up the actual clip itself, when I click Command+R nothing happens. Are there any

  • Alert from the system when inventory count is going on for a bin or materia

    Hai Consultant , Our customer is asking for whether the system can identify what are all the materials in a particular bin has been scheduled for delivery while performing inventory count . Please help me out in this Thanks and Regards Sunil