Publishing for iOS throws Java error!

I just started working with  Air for iOS last week, and already I'm experiencing the most annoying problem that's costing me a lot of wasted development time! I got a Java error after already publishing an uncountable amount of IPA files. I tried to publish a million times and still got the error. So I got frustrated and left it alone for a few hours and I come back, and hey, it worked again... but not for long, maybe just a couple hours and I start getting the Java error again! The error is:
Error creating files.
Error: missing 'client' JVM at '[JRE7 folder]\bin\client\jvm.dll'.
Please install or use the JRE or JDK that contains these missing components.
I've tried reinstalling JRE7 multiple times in numerous ways, but still throws the error... I'll come back in a couple hours to see if it magically wants to start publishing IPA files again.
Has anyone heard of or experienced this problem before?? I cant seem to find anything what so ever on the web about this error. And especially the fact that sometimes it actually publishes is driving me crazy!!

Today it was working just fine for an hour or so, and now again I'm getting the java error... Adobe?? Any answers??

Similar Messages

  • Director 12 publish for iOS

    I'm using the trial version on a Windows machine but publish for iOS is disabled. Has it been disabled deliberately or do I need to be using Director on a Mac?
    Thanks.

    You need to use Director on a Mac for iOS publishing. You will also need an Adobe developer license and the appropriate provisioning profiles for your iOS app, as well as Xcode.
    http://helpx.adobe.com/director/using/publishing-ios-devices-using-director.html

  • IOS native extension for networkinfo throws an error

    Hello,
    I'm trying to check wether the active connection on a device is Wifi or mobile data connection. On android this works fine but on iOS there is a problem.
    A native extension exists for this see here. 
    The problem is that the line below throws an error: 'Error #1009: Cannot access a property or method of a null object reference.'
    var interfaces:Vector.<com.adobe.nativeExtensions.Networkinfo.NetworkInterface> = com.adobe.nativeExtensions.Networkinfo.NetworkInfo.networkInfo.findInterfaces();
    I'm using AIR3.1 (no idea if this works on 3.0).
    Anybody a solution?

    Ever solve this? I'm also getting errors...
    Specifically:
    ArgumentError: Error #3500: The extension context does not have a method with the name getInterfaces.

  • Flash CS 5.5 Professional requires 32-bit JVM when publishing for iOS

    When trying to publish my file to AIR for iOS I get the following error:
    Error: This Java instance does not support a 32-bit JVM.Please install the desired version.
    I'm on Mac OS (Mavericks) and have both java 6 (which supports 32-bit) and 7 (which does not) installed. I've verified I can launch a 32-bit jvm from the terminal with "java -d32".
    Interestingly, it publishes to AIR with no problems when it's not to iOS.
    How can I get Flash to use the correct version of Java? I've tried setting JAVA_HOME to point to version 6 in /etc/profile with still no luck.
    Thanks for reading, I will really appreciate the help!!

    Ok, found the answer thanks to Christopher Caleb. Needed to upgraded CS5.5's bundled AIR from 2.6 to the current one, and it compiled with no errors. Directions are here for anyone that winds up having the same issue:
    http://www.yeahbutisitflash.com/?p=2949

  • Flash Professional CS5.5 crashes while publishing for iOS

    Greetings,
    I'm having the same problem as is detailed in the forum post below from March 8th:
    http://forums.adobe.com/thread/972499
    The problem is that Flash Professional CS5.5 crashes every time I try to publish my 'Hello World' project for iOS. The crash happens anytime I press the OK or Publish buttons while configuring the iOS Settings. This is the tutorial I am attempting to complete:
    http://help.adobe.com/en_US/as3/iphone/WS789ea67d3e73a8b2-240138de1243a7725e7-7ffc.html
    I sent a crash report to adobe, which I could duplicate if that helps.
    Any help with this would be greatly appreciated
    Thanks,
    Jeremy

    Hi,
    There could be an issue with your latest Java Runtime Environment. Could you please uninstall your current JRE and try install a version prior to that?.
    You can find a list of JRE updates here at http://www.filehippo.com/download_jre_32/history/
    Thanks!
    Mohan

  • AIR3.5 for iOS & f4v & iPad, Error #2044: Unhandled NetStatusEvent

    Hello,
    Now, I have to try to play the video on iPad2.
    The video file is f4v.
    But this error occurs
    Error #2044: Unhandled NetStatusEvent:. level=error, code=NetStream.Play.StreamNotFound
    This is my environment
    Flash CS6
    AIR3.5
    iPad2 iOS6
    Use StageVideo
    RenderMode - Direct
    I was able to play flv and mp4 with the same code.
    Only when using the f4v, that error occurs.
    My question is
    Can I play f4v on AIr for iOS ?
    Where is documentation for it?

    thanks random.
    I tryed to change extension. so I was able to play.
    but...
    I had to embed the video cuepoint. the event does not occur at the cue point.
    can't use cuepoint ?

  • AIR for IOS, ApplicationDomain problem: Error #2007: Parameter Possible symbol clash in multiple swf

    I am exporting a game for IOS in Flash CS6.
    I have isolated classes, except a framework for static utilities that do not clash, but I still get this message when exporting for IOS.
    AIR for desktop, even with ApplicationDomain.currentDomain works and does not give any error. Same on android.
    When I export the same exact project for IOS, it triggers that error randomly in different parts.
    All related with a call to a method on superclass, the instantiation of an internal class, or of a Vector typed to a custom internal class.
    TypeError: Error #2007: Parameter Possible symbol clash in multiple swfs, abcenv must be non-null.
    The line that triggers the error:
    return new RouletteChoserItemDev(num, data);
    Any help is appreciated.
    UPDATE
    I have changed the code into:
    var item:RouletteChoserItemDev;
    var MyClass:Class = RouletteChoserItemDev;
    item = new MyClass(num, data);
    Now I get this funny error:
    Error #1034: Type Coercion failed: cannot convert device.plugins.rouletteLobby::RouletteChoserItemDev@6284bc9 to .
    Yes, cannot convert to ".", a dot!

    *FOUND A SOLUTION*
    The way ApplicationDomain.sameDomain works on Android and Desktop, and on IOS, IS DIFFERENT!!!
    I probably have to file this under AIR bugs.
    Anyway:
    - In loaded SWFs, classes which are not already stored in parent SWF CANNOT be instantiated.
    I.E.
    var c:MyClass = new MyClass(); // Will not work
    var c = new MyClass(); // Will not work
    var c:MyClass = getDefinitionByName("fullpackage.MyClass"); // Will not work
    var c = getDefinitionByName("fullpackage.MyClass"); // WORKS!!!!!
    var c:DisplayItem = getDefinitionByName("fullpackage.MyClass"); // WORKS!!!!!
    So, it seems that classes stored in local loaded SWF will not be accessible directly. Even though tracing it trace(MyClass) works well, the class cannot be used in code in any place. Variables cannot be typed, and class can only be instantiated with getDefinitionByName();
    All this, is true ONLY on IOS, same exact project and settings, will not trigger any error in AIR for Desktop or for Android.
    But since obviously we use the same codebase for all devices, this IOS *feature* has to guide the way we code, even though we break a few important OOP best practices.
    Hope I spared someone else the 3 days including an entire weekend I had to invest to find this out.

  • Flash and publishing for iOS (Help Needed)

    I currently own Adobe Create Suite 3 Design Premium.  I just recently heard that CS 5.5 can develop iOS Apps.  So I downloaded trial 2 days ago and thought I would see if I  could develop some apps and if things go well upgrade.
    Here is the issue I'm running into.  I created the CSR file with openssl since I don't own a mac, only a windows 7 based pc.  Apples developers program accepted my CSR and created the provisioning file for it.
    However, when I go to publish the for iOS it asks for a .p12 file.  I found online that is my CSR file.  However, it asks for a password.  I have no password for it.  It does not allow leaving the password field blank, and anything I put in it is incorrect.
    All I need help with is the .p12 file and getting past the password and I will be good to go.
    Anyone know a step by step guide or could walk me though this part.  Thank you and I greatly appreciate it.
    ~Chris

    the only thing is that i havent got a password set to my computer but i will have a look in to that thanks for the help

  • Unwanted margins when publishing for ios

    I'm using flash CC to create an app for iOS. In flash CC I start a new "air for iOS" file.
    I get a stage of 640x960. The stage is empty and there's no code. I publish, check it out on the iPhone (5) and I get margins on the top and bottom. 1 cm each. It simply won't cover the whole screen.
    I tick the full screen box in the settings -> still get the margins.
    I add: stage.displayState = StageDisplayState.FULL_SCREEN; -> still get the margings.
    I change the stage's size to various sizes -> all the same.
    What am I missing? how do I make these margins disappear?
    (I just want to see my empty stage covering the whole iPhone5's screen)

    it's  in the first and only frame :
    import flash.display.StageScaleMode;
    stage.scaleMode = StageScaleMode.NO_BORDER;
    thanks

  • Published for iOS, sound plays but no screen.

    Hi,
    I have completed a new game that runs great on Android - created using Flash Builder 4.5 and Flash Professional. I got all our Apple stuff out of the way and then also compiled for iOS. Then I deployed to my son's iPod Touch 5 via TestFlightApp.com. He installed and ran and we get the sound but no screen. I'd really like to finish debugging and then deploy this app for both droid and iOS at the same time (in the next few days). Can someone tell me why the SWF's that are the UI of the app are playing sound but not showing up on screen? How can I fix this problem?
    BTW, please forgive the fact that the site is under dev (will be completed and polished before go live), but you can get some idea of what the game is about at our web site: headshotgame.com.
    Best,
    Al

    Ooops, spoke too soon...
    After we recompiled all our FLA's to SWF's and added them as assets to our Flash Builder project, it did not work again (SWF sound plays but no graphics display). So, we went back to the earlier test solution and it did not work  either?!?
    Finally, we compiled using the quick compile selection of Flash Builder. The intro screen showed up all the sudden! But, none of the buttons work and you can't navigate to any other of the screens. Sadly, this is not answered and I don't know whether this belongs in the Flash Builder or the Flex forum as I don't know what is causing the problem.
    All of this works perfectly on Android. Same code on iOS does not work. Perhaps it's the fact that I'm testing on an iPod touch with iOS5?
    I have people waiting to test this app and help me get it live but I can't seem to get it to run on iOS. Please let me know if I can provide any other info to help you help me.
    Thanks!
    A summary of our problem:
    We have multiple SWF's that are compiled in Flash Pro that make up a larger mobile app that we built in Flash Builder.
    We add the Flash Pro SWF's to Flash Builder as assets of the project and use the Navigator to move between them with event listeners bubbling up from the buttons that are in the SWF's.
    There are many SWF's - most screens have multiple SWF's on them.
    All of this works very well on Android.
    The same project compiled for iOS creates an IPA file but when the IPA file is deployed to the device, none of the screens show up but the sound plays.
    There is only one way to get a (the first) screen to show on the device which is to set Flash Builder packaging method to "fast". Yet, getting the screen to show is useless as it won't allow you to navigate (and the SWF behaves differently in other ways compared to Android).
    I am testing on iPod and will recruit other iOS device users to test as well. The iPod I am testing on is an iPod touch with iOS 5.

  • AIR Publish for iOS Error: Install application on the connected iOS device

    OK, I've been having this issue sporadically for a pretty long time now, I'm talking months if not over a year. Currently I am using Adobe Flash Pro CS 6 on a PC with Windows 8, AIR 4.0.0.1390 SDK installed. Sometimes, when publishing the App and having "Install the application on the connected iOS device" checked I receive the following error message although the iPad is connected with 2.5 GB available:
    "Error creating files.
    Uninstallation Error: Failed to send request to device.
    Device Error: please check if there is enough space on the device."
    I have found absolutely no rhyme or reason for this to occur. Sometimes it will, sometimes it won't, but I just tried publishing with install about four times, having unplugged the iPad, removed the previous App manually, closed the previously installed App, closed and reopened Flash, and it still won't install. Usually I can get it to install after a couple tries, thus dampening my urge to post a thread but I've now been driven to write due to the number of errors.
    Oddly a Google search for "Uninstallation Error: Failed to send request to device." yields no results, am I the only receiving this message?
    I keep hoping that new releases of AIR will resolve this issue but alas, no such luck. Anyone have a fix for this or able to confirm similar frustrations? I am currently using a first generation iPad, but have also experienced similar issues with third generation iPad.

    I'm also getting the error in the post above when trying to publish and install with AIR 15.0.0.302 on an iPAD 2 iOS 8.0.2:
         Error creating files.
         Uninstallation Error: APIInternalError.
         Device Error: please check if there is enough space on the device.
    - and I have 6.3GB of space, so I know that isn't the issue. I'm even attempting to compile a completely brand new (empty) fla, but the error persists. I've also tried to compile an ipa with AIR 14 and receive the same error. Possibly this has something to do with the latest iOS?

  • Flash CS6 does not publish for iOS with ANE included

    Hi,
    I'm creating a game to run on iOS devices and one of the game requirement is for the device to vibrate on some action.
    I added the Vibration.ane file (http://www.adobe.com/devnet/air/native-extensions-for-air/extensions/vibration.html) into the library path in Flash CS6 and also added the extension ID to the XML file. However when I publish the Flash file to check on device, I only keep seeing the "Publishing" loader bar. I've even waited for over 15 mins for it to complete. I get no error, nor does the PC hang, but I can't seem to publish my .app file for device testing.
    Also I assume we can't test Vibration functionality with the Simulator that opens during desktop testing. I get the error "The content cannot be loaded because there was a problem loading an extension: Error: Requested extension com.adobe.Vibration is not supported for Windows-x86."
    Would appreciate help.
    Thanks,
    Mariam

    IPA is ok at the CS6 flash' standard 3.2 export, just tried the new AIR 3.3 also - no problems. I just included the Gyro ANE file, not the SWC
    However, because the adl still does not want to preview this thing, development/testing the Gyro stuff is difficult...
    I discovered the accelerometer is something different however. Adobe's little remote control thingy on which you can simulate phone position and multitouch emulates the accelerometer, not the Gyro. The Gyro extension taps in to a piece of hardware which really displays the position of the device, not the movement it's been receiving.
    Maybe obvious but I thought I'd post this little find, after a day of testing and exporting, syncing, ... this was a tiresome experience...
    After all this I can advise to sync the .ipa's with xcode though, instead of iTunes. This works MUCH faster (if you're on mac). Just run xcode, pull up the 'organizer window', select your device and go to the subbranch ' applications'. There you can add the .ipa by clicking on the '+' button

  • Unable to add Action for table - throwing Fatal error while rendering the table after adding

    Hi,
    I am not able to add action to the table i created.
    when i click on events and then Create Action for "onFilter" event, it is giving me Internal Error. The message details is:
    eclipse.buildId=@qualifier@
    java.version=1.6.0_45
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en
    Command-line arguments:  -os win32 -ws win32 -arch x86 -data C:\NWDS\Workspace
    Error
    Thu Jul 17 11:17:27 IST 2014
    Internal Error
       Plug-In Name: Web Dynpro HTML Rendering
       Internal Error  : com.sap.ide.webdynpro.rendering.html
       Class      : com.sap.ide.webdynpro.viewdesigner.ur.RenderingService
       Method     : renderDelta
       Message    : java.lang.RuntimeException: nullFatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.TableAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSSapTableRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.TableAdapter@1376233Fatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSFlowLayoutRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter@1102ae6Fatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.GroupAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSGroupRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.GroupAdapter@70815bFatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSFlowLayoutRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter@3cb708Fatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.ScrollContainerAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSScrollContainerRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.ScrollContainerAdapter@14a4b5Fatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSFlowLayoutRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter@14983d6Fatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.ScrollContainerAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSScrollContainerRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.ScrollContainerAdapter@16e8151
       Exception  : java.lang.RuntimeException: java.lang.RuntimeException: nullFatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.TableAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSSapTableRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.TableAdapter@1376233Fatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSFlowLayoutRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter@1102ae6Fatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.GroupAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSGroupRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.GroupAdapter@70815bFatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSFlowLayoutRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter@3cb708Fatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.ScrollContainerAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSScrollContainerRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.ScrollContainerAdapter@14a4b5Fatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSFlowLayoutRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FlowLayoutAdapter@14983d6Fatal rendering error at control com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.ScrollContainerAdapter [] and renderer com.sap.tc.ls.renderer.ie6.LSScrollContainerRenderer. Please contact the developer of the renderer. com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.ScrollContainerAdapter@16e8151
          [Error: com.sap.ide.tools.services.ui.dialog.DialogService  Thread[main,6,main]]
    The complete error details is also attached with the message.
    After creating the action, the table looks like below:
    Can someone help me on fixing this issue.
    Thanks,
    Abhishek.

    Its a rendering issue with the NWDS/IDE.
    Try, close and re-open for fix it. If it still persists, uninstall NWDS and re-install the right version of NWDS w.r.t the Portal server.
    Regards,
    Sharath

  • Level-2 GPU published for IOS and Box2D/WCK    Does this fall under the revenue share requirements?

    WCK uses the Box2D Alchemy port and therefore uses "Domain Memory".  Part 1 of premium features usage.
    Does publishing to "Level-2 GPU" constitute use of Stage3D?  Is this now part 2?
    Does our project now fall under the revenue share requirements?
    We aren't using Starling or any framework other than WCK.
    I wouldn't think Level-2 GPU constitutes use of Stage3D but have to ask.
    We would appreciate some clarification from Adobe on this.

    Thanks Kevin.  I need to read more carefully. We are targeting IOS/Android with this project.
    "Level 2 - GPU" is a choice in the "Hardware Acceleration" drop down box on the main Publish Settings screen when
    you have Flash (.swf) highlighted in the left pane on Flash Pro CS5.5
    The other settings pages have Auto, CPU or GPU under "Rendering" or "Render Mode"
    Like I said I need to read more carefully. 
    What is NOT considered part of the premium features?
    The following uses are NOT considered premium and there is no revenue share required for these uses:
    Use of domain memory alone,
    Use of hardware accelerated Stage3D features alone,
    Use of software rendering of Stage3D, or
    Use of these features within Flash content packaged as apps using AIR
    Thanks again guys

  • Strange solution for iOS 4.3 Error 9 (got at "restoring IPhone firmware")

    After my iPhone 4 was stuck between iOS 4.3 installation failure and restoring of iOS 4.2.1 Apple Service men tested it and confirmed a hardware problem. Now I'm given brand new one.
    From what I see another guy had reported same here:
    http://discussions.apple.com/thread.jspa?threadID=2777023&start=0&tstart=30
    Some other people also reported encounter with same problem - Error 9 during Restore at "restoring iPhone firmware".
    The solution is the best for the customers, but to me it sounds very strange that a software update can cause hardware damage. There is something fishy here.
    Anyway, affected fellows: Do not waste your time. Go to nearest Apple Service.
    Message was edited by: Hityr5yr

    I have this exact problem and do not believe in the least that it is hardware related.

Maybe you are looking for

  • Error reading setup initialization file

    I am trying to download and install J2SE v 1.4.2_04 SDK and J2SE v 1.4.2_04 JRE on a Windows XP platform SP1. The machine is a dual XEON 3.0 G machine with 1G of memory. I downloaded the software and saved it to my desktop. When I double clicked on e

  • OnDisconnect don't work in FCS

    Hello, I just install FCS in Fedora Core 4 and have 2 problems: - cannot restart the server from admin console, I receive this message: Restart of server: Unsuccessful error description:Failed to start server. - some user remain in user list after th

  • Transfert music to Ipad mini

    Music not transfert in my ipad mini. Why ?

  • Export Of Data In The .CSV Format With Column Headings On Top

    I'm trying to export data in the .csv format from a report (Crystal Reports XI Release 2).  When I export the data, the heading appears in the first few columns on the left hand side (i.e. columns "A" thru "G") for every row, rather as a column headi

  • What resolution & order of work to scan slides for Photoshop editing

    When editing all done I would propose to save at 300 dpi. If the photo/slide requires no editing, I would also scan in and save at 300 dpi. My slides, however, need a lot of work. They have deteriorated over the years and need - colour correction, re