Adobe AIR apps start with black screen on iOS 8

AIR apps that worked fine on iOS 7 now just show a black screen and are unresponsive after updating to iOS 8.
Is this a known issue? Has anyone found a solution yet?

Found a resolution- the apps were published with the AIR 3.4 SDK. Republished with the newest AIR 15 SDK and they work properly in iOS 8.

Similar Messages

  • Adobe AIR apps open to black screen in iOS 8

    Adobe AIR for iOS apps I published using Flash Professional CS6 no longer run properly on iOS 8. They worked fine in iOS 7.
    After opening, they just hang at a black screen (likely the launch screen - I didn't make an image for it).
    Is this a known issue? Are there any solutions?

    I've found an answer- the apps were published using the AIR 3.4 SDK, which I guess iOS 8 doesn't support.
    Republished one with the newest AIR 15 SDK and it works properly.
    Guess I'll have to republish everything.

  • IOS app starts with black screen when compiled via ADT (Flex 4.6, AIR3.7)

    I was using Flex 4.6 with AIR 3.1 in Flash Builder 4.6 on Windows 7. I used two build methods: 1) "Export Release Build" in Flash Builder during development and 2) the ADT toolchain on my build server.
    For the ADT method I would create AIR intermediate files using:
    "C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\FlashBuilderC.exe" --launcher.suppressErrors -noSplash -application org.eclipse.ant.core.antRunner -data [PATH_TO_SOURCE] -file [PATH_TO_BUILD_XML] [PROJECT_NAME]
    Where my build.xml looks like:
    <?xml version="1.0"?>
    <project default="main">
        <target name="main">
            <fb.exportReleaseBuild project="[PROJECT_NAME]" basefilename="[BASE_FILE_NAME]" verbose="true" destdir="bin-release" />
        </target>
    </project>
    From these intermediate AIR files I would create my APK and IPA files using ADT like so (shown for iOS):
    echo [CERTIFICATE_PASSWORD]|"C:\Program Files (x86)\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\bin\adt" -package -target ipa-test -provisioning-profile [PATH_TO_MOBILE_PROVISIONING_FILE] -storetype PKCS12 -keystore [PATH_TO_DEV_CERTIFICATE] [OUTPUT_PATH] [PATH_TO_IOS_AIRI]
    This procedure produced working iOS and Android apps as well.
    I decided to upgrade AIR to version 3.7. I used the overlay proceedure described here (http://helpx.adobe.com/x-productkb/multi/how-overlay-air-sdk-flex-sdk.html). I also updated the namespace in my project to reflect the new AIR version. Using "Export Release Build" in Flash Builder produces working copies of both the iOS and Android apps. Furthermore, the secondary method (used on my build server), produces both APK and IPA files without error. The APK works just fine but the IPA does not. When running the app on an Apple device, it starts up with a black screen and stays this way.
    To summarize:
    Flex 4.6, AIR 3.1: "Export Release Build" and ADT tool chain produce working APK and IPA files.
    Flex 4.6, AIR 3.7 using overlay procedure: "Export Release Build" produces working APK and IPA files, ADT tool chain produces working APK file but IPA file loads black screen on Apple devices.
    More notes:
    I had made a back up of the "4.6.0" directory that holds the Flex and AIR SDK files. If I replace the overlayed Flex 4.6.0 SDK directory with the original (which contains AIR 3.1) and revert the namespace back to 3.1 in my project, everything goes back to normal and I get working apps via both methods described above.
    Edit: I also should note that I've tried many other combinations of Flex and AIR (Flex 4.9.1 from Apache and AIR 3.5/3.6), which all produce the same issue. It seems that the overlay procedure breaks something for ADT with iOS specifically...
    Edit 2: I also noticed that the IPA files output by methods 1 and 2 are slightly different. Opening these with 7-Zip I see that most of the files are the same, but some differ slightly in size (this was due to 'ipa-test' vs 'ipa-ad-hoc'). The odd thing is that in the IPA file that does not work (produced via the ADT method), the SWF file is named "swf3465180827438224920.tmp" while the SWF in the IPA that was created using "Export Release Build is named "[PROJECT_NAME].swf". It almost appears as though ADT fails to rename the temporary SWF file. I also realized that the "Export Release Build" method likely used '-target ipa-ad-hoc', so I tried this in the ADT method with the same result.
    Any thoughts?

    Hello Nimit,
    Thank you for your response. I have tried AIR 3.8 Beta and this did not correct the problem. I downloaded the AIR 3.7 SDK from http://airdownload.adobe.com/air/win/download/latest/AdobeAIRSDK.zip . I have also tried with the new compiler as well, with the same result.
    To keep things simple, I've created a very lightweight example with which I see the issue. I've also been able to remove the Flash Builder step and reproduce the problem with mxmlc and adt only. Since the files are simple, I will just post them here.
    TestApp-app.xml
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/3.7">
        <id>com.company.testapp</id>
        <filename>TestApp</filename>
        <versionNumber>1.0.0</versionNumber>
        <initialWindow>
            <content>TestApp.swf</content>
            <autoOrients>false</autoOrients>
            <fullScreen>true</fullScreen>
            <visible>true</visible>
            <softKeyboardBehavior>none</softKeyboardBehavior>
        </initialWindow>
        <android>
            <colorDepth>16bit</colorDepth>
            <manifestAdditions><![CDATA[
                <manifest android:installLocation="auto">
                    <uses-permission android:name="android.permission.INTERNET"/>
                </manifest>
            ]]></manifestAdditions>
        </android>
        <iPhone>
            <InfoAdditions><![CDATA[
                <key>UIDeviceFamily</key>
                <array>
                    <string>1</string>
                    <string>2</string>
                </array>
            ]]></InfoAdditions>
            <requestedDisplayResolution>high</requestedDisplayResolution>
        </iPhone>
    </application>
    TestApp.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:ViewNavigatorApplication xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" firstView="TestView" applicationDPI="160">
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
    </s:ViewNavigatorApplication>
    TestView.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="Test App" >
        <s:VGroup width="100%" height="100%" verticalAlign="middle" horizontalAlign="center" >
            <s:Label text="Hello World!" />
        </s:VGroup>
    </s:View>
    Create the above files in a single directory. Run the following to get a working IPA (method 1):
    > mxmlc +configname=airmobile TestApp.mxml
    > adt -package -target ipa-test -provisioning-profile [PROVISIONING_FILE] -storetype pkcs12 -keystore [CERTIFICATE] TestApp.ipa TestApp-app.xml TestApp.swf
    To reproduce the problem, run the following (method 2):
    > mxmlc +configname=airmobile TestApp.mxml
    > adt -prepare TestApp.airi TestApp-app.xml TestApp.swf
    > adt -package -target ipa-test -provisioning-profile [PROVISIONING_FILE] -storetype pkcs12 -keystore [CERTIFICATE] TestApp.ipa TestApp.airi
    If you unpack the working IPA (from method 1) you will see the file "TestApp.ipa\Payload\TestApp.app\TestApp.swf". However, if you likewise inspect the IPA created via the AIR intermediate method (method 2), you will see the file "TestApp.ipa\Payload\TestApp.app\swf1970057761096800694.tmp" and there will be no "TestApp.swf". In both IPA files, if we inspect "TestApp.ipa\Payload\TestApp.app\Info.plist", we see the snippet:
            <key>CTInitialWindowTitle</key>
            <string>TestApp</string>
            <key>CTInitialWindowContent</key>
            <string>TestApp.swf</string>
            <key>CTMaxSWFMajorVersion</key>
            <string>20</string>
            <key>CFBundleSupportedPlatforms</key>
    So I suspect "TestApp.ipa\Payload\TestApp.app\swf1970057761096800694.tmp" is incorrectly named, cannot be found at runtime and thus displays a black screen.
    This problem is observed when using AIR 3.7. It is not observed when using AIR 3.1.

  • Adobe air app integration with mac help

    Hi  all,
    I want to intergrate my help with adobe air app on mac(so that it should look like mac help). But i am not able to do so as we need to add entry in the file info.plist for doing it. Can anyone please guide me on this. I have downloaded several application but not able to find any application with help intergrated in it. Most of the sample apps don't have any help and the remaining apps send the link to their website for help.
    Any suggestion/ guidance in this regard would be great
    Thanks in advance
    Sumeet

    Try redownloading the Adobe Help application from http://www.adobe.com/support/chc/.
    Hope that helps,
    Frank
    AIR Engineering

  • Any known reason why bootcamp would start with black screen ?

    I just got bootcamp installed on a brand new mac pro with two Apple displays.
    I was able to start up my machine successfully with bootcamp (windows XP) and with mac OS.
    I am able to run the bootcamp partition from VMware. However, recently, I have not beel able to boot into windows.
    All I get is a black screen once the windows logo disappears.
    Any idea why bootcamp suddenly refuses to boot with windows but has no problem doing so with CMware Fusion ?

    You probably want to look through VMware Fusion about what is happening.
    http://communities.vmware.com/community/vmtn/desktop/fusion
    BootCamp is just a way to help format drive partitions. Beyond that, it adds HAL and Apple Services.
    With Mac Pro, the ideal is to use Disk Utility and 2nd drive, partitioned as Master Boot Record.
    Fusion and a BootCamp partition do make it more complicated. Fusion over writes graphic drivers - or did.
    Windows Recovery Environment and Safe Mode would be first step.

  • Qosmio F50-125 starts with black screen after an BIOS update

    Hi
    after instalation if new bios (v 2.0), computer sometimes starts with the black screen .
    Even the first page that show press f2 to enter the bios is not shown.
    Do you have somebody old version of the bios?
    So I could try if it is the fault of it.

    Hi
    I think the old BIOS will not help you because the notebook would known that you are trying to update the BIOS to the older version and it would break up the procedure.
    Furthermore the older BIOS is no available on the Toshiba European driver page.
    I think just only a Toshiba ASP has got an older BIOS version.
    Anyway, you said this happens sometimes.
    This would mean that this issue doesnt persist always
    Hmm. in such case I recommend settings the BIOS to the default settings and to update the display driver.
    Check it out!

  • Satellite m505 problems with booting up programs after started with black screen

    I went to start my laptop and after login to my profile, i was getting only a black screen. after restarting many times in both safe mode and regular, miracles i got it to long in correctly...
    now the problem is my main program and a few others would not open up, again restarted computer several times and nothing is helping... so i uninstalled the program and attempted to re-install... new problem now it wont reinstall every time i try it opens windows installer and just sits there doing nothing....
    help i just want to get my work done!!!!!

    Try using clean boot.
    How can I perform a clean startup of Windows 7 without my startup items to troubleshoot a problem?
    - Peter

  • Macbook pro-Freezes with black screen at start up.

    Macbook pro-Freezes with black screen at start up. I've tried inserting the Mac OS X install disc to run the hardware test(Restart and hold down D), But it still does nothing. Just the black screen. Now I can't get the disc out. I've tried holding down the track pad key upon start up but that doesn't work neither.
    What do I do??? Please help.

    Remove the battery to find your serial number in the battery bay. Then you can look your MBP up on EveryMac.com:
    http://www.everymac.com/ultimate-mac-lookup/
    That will give you all the information on your Mac.
    This is assuming that you have the MBP with the removable battery and not the unibody. The unibody has different graphic chips.
    Good luck!
    Message was edited by: S.U.

  • Adobe air apps cannot be installed

    Hi,
    I have trouble with my PC to install any kind of adobe air app. When I start to install a Adobe air app, I get the UAC request and I confirm it but then the Adobe Air Application Installer.exe *32 is hanging and doing nothing.
    When I repeat the process another Adobe Air Application Installer.exe *32 instance is started.
    Here is my equipment and what I tried:
    Equipment:
    Windows 7 professional SP1 64 -Bit
    - Reinstalling Adobe air with Revo Uninstaller(cleaning registry) and installing it new with Admin rights.
    - Installing Adobe air in Windows XP Sp3 mode
    - Multiple apps were tried and when I start them with the SDK, they are working fine.
    - No information are available in the windows eventlogs
    Any idea  how to solve it or any possibility to start a debug tool to get more information?
    Thank you in advance for any input and help!
    Cheers,
    Dominik

    Hi Chris,
    I appreciate your support!
    Sadly the Microsoft Install and Uninstall Fix It tool does not work, adobe air is still hanging during the app installation.
    This is what I have done:
    1. Uninstall Adobe air with the Microsoft Tool
    2. Install Adobe air new
    3. Try to install the app SmartClient.air -> Did not work
    4. Try to install the app DesktopiPhone.air -> Did not work
    Now I have 4 Adobe air instance in the task manager(see screenshot)
    2* Adobe Air Installer
    2* Adobe Air Application Installer
    Here the install log file:
    [2012-09-25:08:54:39] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-25:08:54:39] Commandline is:
    [2012-09-25:08:54:39] No installed runtime detected
    [2012-09-25:08:54:41] Relaunching with elevation
    [2012-09-25:08:54:41] Launching subprocess with commandline c:\users\sd000037\appdata\local\temp\airb183.tmp\adobe air installer.exe -ei
    [2012-09-25:08:54:43] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-09-25:08:54:43] Commandline is: -stdio \\.\pipe\AIR_4324_0 -ei
    [2012-09-25:08:54:43] No installed runtime detected
    [2012-09-25:08:54:43] Starting silent runtime install. Installing runtime version 3.4.0.2540
    [2012-09-25:08:54:43] Installing msi at c:\users\sd000037\appdata\local\temp\airb183.tmp\setup.msi with guid {14DC0059-00F1-4F62-BD1A-AB23CD51A95E}
    [2012-09-25:08:54:45] Runtime Installer end with exit code 0
    [2012-09-25:08:54:45] Elevated install completed
    [2012-09-25:08:55:46] Application Installer begin with version 3.4.0.2540 on Windows XP x86
    [2012-09-25:08:55:46] Commandline is: "D:\Arbeit\SmartOffice\0.07.23 MAIN_10082012_001_BETA\SmartClient.air"
    [2012-09-25:08:55:46] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-09-25:08:57:27] Application Installer begin with version 3.4.0.2540 on Windows XP x86
    [2012-09-25:08:57:27] Commandline is: D:\Arbeit\SmartOffice\DesktopiPhone.air
    [2012-09-25:08:57:27] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Thanks,
    Dominik

  • Displaying fb Friends in Adobe AIR app

    First off, I realize I'm completely in over my head here.
    I am a designer... not a programmer.  Sure, I've set up some "quizzes" on facebook... but nothing like what I'm trying to do here.  So, I'm hoping to get some quick and simple help from someone here.
    Anyway... here's my problem...
    I've made a fun little Adobe AIR app using Flash CS4.  When ran it makes your computer screen look like you're logging into the Umbrella Corporation from the Resident Evil franchise.  It has company data, surveillance cameras and other stuff.  It's totally for fun and doesn't "do" anything.  Just wanted to make an AIR app late one night and this is what I did.
    Now, however, I would like to make it so that you can login to your facebook account and then view a "database of Umbrella Employees"... which... in reality... would simply be a list of your facebook friends with pictures!  The descriptions of what they "do" could be randomly generated from a file or something... or it could be grabbed from some posts they've made or something.  But the friend pictures and names are really what I'm wanting to show.
    I have looked and looked all over for a simple "downloadable" example of this.  I've found some things, but everything is like reading an encyclopedia... and, like I said, I'm simply not that smart.
    Does anyone have a Flash CS4 .fla file that you could share with me to show me how to do this?
    I'm serious when I say I can't figure much out... so please include all library files and anything else I need to know (like upload this to your server here) and stuff.
    If you help, and I "release" this (obviously I can't make money on it) I'll put an Easter egg in for you with your profile or picture or whatever you like!
    Here's hoping for some help...
    Noel

    start here: http://code.google.com/p/facebook-actionscript-api/

  • Run Adobe AIR app as Windows Service

    I have an app which monitors an RSS feed. Upon an emergency,
    the RSS feed is updated. The app detects the change and launches
    (from the taskbar/dock) full screen, plays an alarm sound and
    displays the message.
    Is it possible to run this app as a service (I know that
    there are several software options to enable this) - my question is
    directed towards launching the full screen warning. Can I utilize
    the windowing API before a user logs in if the app runs as a
    service?
    I have tested this using a couple of those software options
    with no success.
    Does anyone else have any ideas or answers?

    John, did you ever find a solution for running an Adobe AIR app as a Windows Service?

  • Adobe AIR on Mobile with Facebook

    I am developing an Adobe AIR app for mobile devices to work with Facebook. I am using the Adobe ActionScript API for Facebook Platform
    I am accessing the Facebook from Actionsctipt code as follows:
    FacebookMobile.init("my-numeric-app-id", initHandler);
    function initHandler(success:Object, fail:Object):void
        // inside login handler
    The success object is null and and the fail object has the message "An active access token must be used to query information about the current user."
    What is wrong here or what else is needed to be done to mae it work?

    I've made a little headway with this. Within your initHandler just make a call to login:
    FacebookMobile.login(loginCallback, this.stage, [], webview);
    webview is a StageWebView instance with the viewPort defined. If I left it null, or didn't set the viewPort nothing happens...
    var webview:StageWebView = new StageWebView();
    webview.viewPort = new Rectangle(0,0,400,400);
    I'm now getting a login screen.

  • Ipod touch 4G stuck on swirling motion with black screen

    So I jailbroke my ipod with absinthe a few days ago and everything has been working fine but today i used an app i downloaded from cydia (cant remember the name) and it started to respring and went on for a long time so restared my ipod and everything but it still came back to the same screen of a swirling motion with black screen after passing the apple logo. I tried restoring the ipod on itunes but an error keeps occuring and it wont allow me to restore. Itunes wont read my ipod either. My ipod will not allow me to do anything. What should I do?

    Go elsewhere. Jailbreaking voids the Apple warranty. It also means that you will not get any help from Apple, including from this Apple forum.

  • Adobe AIR app installation issue due to certificate problem on mac 10.9.5

    Im trying to upgrade and then reinstall an Adobe Air application but get the error message failing to install due to a certificate issue.
    The developer says the fix is to uninstall the app and install again but this also fails.
    Checked my machine clock - saved but that didnt work
    The adobe AIR uninstaller simply says I have the latest version? Cant seem to delete and reinstall although other adobe air apps work so I dont think this is the issue
    I have gone through the troubleshooting guide: Troubleshoot AIR installation | Mac OS but still have the issue?
    Any ideas would be great.

    I suspect your Mac OS install was an in place upgrade from an earlier version. This is something I would never even consider with a production machine.

  • Error message when downloading adobe air app.

    I have according to the installation program successfully installed adobe air. I am now trying to download an adobe air app from Jacqui Lawson and keep getting the following message.
    "Sorry an error has occurred. The application could not be installed. Try installing it again. If the problem persists, contact the application author."
    I have read other comments regarding this matter and tried everything suggested so far. I am still having the same issue.
    I am running windows vista 32 bit. All firewall and anti virus are off, UAC is enabled, I have uninstalled and reinstalled the program and I have tried using a different browser. Can anyone suggest anything else to try.

    Curtis Baughman
    Many of us have encounted this issue. The problem is not confined to a particular version or computer operating. Many homemade remedies and scientific ones have worked for some and not others. The most recent fix was offered by an ID by the name of Maud Barbara and seems to have been the answer for that user and at least one more.
    Maud Barbara's fix can be found at the end of the very long thread on the subject found
    http://forums.adobe.com/thread/1121947?start=40&tstart=0
    The rough Google Translate went
    Hello 
    I had the same problem as you and I just d have the solution:
    go to C / program files (86) / common files/OOBE
    Rename OOBE by OLDOOBE
    and your problem is resolved
    You can reinstall the software
    What worked for me in this case was none of the above. How I and others navigated this installation problem is documented in the thread cited.
    We look forward to your results to see what turned out to work for you.
    Thanks.
    ATR

Maybe you are looking for

  • Is there any way to re-install an app on my iPad 2 without synching?

    I deleted and now want to re-install an app on my iPad 2. The App store tells me it's installed and I didn't see any way to re-install it from there. Is there any way to re-install just one little app without having to haul out the big ol' laptop and

  • Safari won't open I get plug-in ct_plugins ERROR

    *when i open safari i get the following error message:* *"The application Safari quit unexpectedly. The problem my have been caused by the ct_plugins plug-in.* *this is the report.* Model: MacBook4,1, BootROM MB41.00C1.B00, 2 processors, Intel Core 2

  • Modifyg data type in view

    Dear all I need a solution to modify the data type in view.I am herewith the example Create table T1(F1 Number(20)) create materialized view t1_view as select f1 from t1; sql>desc t1_view ------------------=------ F1 NUMBER(20) I need the output like

  • Logon refused (valid license not installed)

    Hello, when we try to log on to SAP we are getting this error "Connection refused (valid license is not installed ". we didn't any refresh or upgrade. but the server was changed yesterday, you think this has an impact on the license? could you help m

  • Can't download any apps in CC, using Firefox, Win7

    try with Chrome don't work