Release and Debug builds

[LInux]
I noticed that when I first start to create a project in Eclipse that it shows a small dialog box with to options checked, release & debug, and I make sure they are both checked. But when I would do a build it would do both executables debug (with debugging symbols) and release (without debugging symbols). I had to find a second options and I don't remember if it was in Properties or Preferences because I can't seem to find that option again.
So what's the difference between the dialog box that shows up with both debug and release checked when you first start a project and the option that I found in properties or preferences for building both?
Also, I can't find that option again in properties or preferences and also for whatever reason the dialog box with debug and release options has stopped coming up when I create a project. Any ideas? Thanks.
One last thing. Is there a way to keep a group of projects under one tree in the Project Explorer? When I'm going through one, or several programming books at a time I don't want to stack 200 projects on top of each other in the project explorer. If I'm going through a particular programming book I'd like to keep all of it's projects in their own tree. Thanks again.

Garrett Gaston wrote on Sat, 08 August 2015 12:27[LInux]
I noticed that when I first start to create a project in Eclipse that it shows a small dialog box with to options checked, release & debug, and I make sure they are both checked. But when I would do a build it would do both executables debug (with debugging symbols) and release (without debugging symbols). I had to find a second options and I don't remember if it was in Properties or Preferences because I can't seem to find that option again.
So what's the difference between the dialog box that shows up with both debug and release checked when you first start a project and the option that I found in properties or preferences for building both?
Also, I can't find that option again in properties or preferences and also for whatever reason the dialog box with debug and release options has stopped coming up when I create a project. Any ideas? Thanks.
When you create a new C++ project for an executable or a library, it always give you the option to edit the build configurations on the 2nd or 3rd window of the wizard.
If you don't set it, you don't enable that specific configuation and it won't be built.
To build only a single configuration at time, you should firstly set it through Project -> Build configurations -> Set active, and afterwards click on Projects -> Build project.
I suspect the behaviour you are noticing occurs when you perform "Build all".
Once a project is created, you can edit the configurations from Project properties -> C++ Build -> Manage configurations, it is a button on the right of the current configuration being selected.
Quote:One last thing. Is there a way to keep a group of projects under one tree in the Project Explorer? When I'm going through one, or several programming books at a time I don't want to stack 200 projects on top of each other in the project explorer. If I'm going through a particular programming book I'd like to keep all of it's projects in their own tree. Thanks again.
As you've already noticed, one way would be to organise them on working sets. This is what I am currently using right now, and personally I'm finding quite confusing to handle.
However I've seen several people that just create a new workspace to organise a different set of related projects. You can switch a workspace from File -> Switch to workspace. Then if you want to check two projects in two different workspaces, you need to have two separate instances of Eclipse running, as far as I've understood.

Similar Messages

  • Difference for method stack size in release and debug builds

    Hi,
    I have a question regarding the method stack size. Running my project in the debug version works fine. Running the same project as release causes a StackOverflowError (60 entries). Is there any difference in the allowed stack size?
    If I split the method (in which the error occurs) into two separate methods and call them sequentially, this works in the release build as well.
    I am using Flex SDK 3.4. This is reproducable on Win and Mac.
    Cheers
    Philipp

    Hi,
    I have a question regarding the method stack size. Running my project in the debug version works fine. Running the same project as release causes a StackOverflowError (60 entries). Is there any difference in the allowed stack size?
    If I split the method (in which the error occurs) into two separate methods and call them sequentially, this works in the release build as well.
    I am using Flex SDK 3.4. This is reproducable on Win and Mac.
    Cheers
    Philipp

  • Xcode target names only 'release' and 'debug'

    Hi,
    We like to create more build targets in our project, at the moment we have the standard 'release' and 'debug'. For a new version we need targets like 'release 4.1' and 'release 5.0' now. I duplicated the target entry, but if I try to build a target with a name different from 'debug' or 'release', I got an error: "file not fount: @executable_path/WidgetBinLib.dylib". If I change the target name to 'release' or 'debug' it works.
    Any idea, how we can use the other target names? Any settings we must change?
    thanks
    Klaus

    I think is something wrong with  .fr.rsrc/.fr files of duplicated target, Make sure the new target doesn't have an included from source target.
    HTH,
    -Kamran

  • How do you detect whether release or debug build using compiler preprocess​or directives​?

    Hi - I want to detect during compilation whether the user has set CVI to compile the code as a release build or as a standard debug build.  Are there simple preprocessor conditionals to test for this?
    Thanks
    Gareth
    Solved!
    Go to Solution.

    Hey Gareth -
    The _CVI_DEBUG_ predefined macro will be set for debug builds.  You can see the list of all predefined macros by going to Options»Build Options»Predefined Macros.
    NickB
    National Instruments

  • Release vs Debug: Bad Memory Access

    Hello everyone.
    For a school assignment I have to write a program that sorts bottles (inputed by the user) into three bins, and state the minimum amount of moves it takes. I've completed the program, that's not really the problem.
    There is a drop down menu up on the top left, and it gives me the option between 'Release' and 'Debug' (under Active Configuration). Now I don't quite understand the difference, but expected for the final copy it should be compiles with it set to Release. But that's just an assumption.
    The problem is, or maybe this is just a question, when I set it to Debug and build my program, it runs great. If I change this option to Release and run the program I get "EXCBADACCESS" and the program fails.
    My main worry is this might indicate a potential problem with compatibility on other platforms (maybe). I've compiled the program in Terminal with GCC and it works fine there as well. I will post my code below if it helps any. My hope is this is either a bug in xcode, or simply nothing to worry about.
    I've underlined the area XCode highlights when the error occurs. Thank you.
    #include <stdio.h>
    #include <stdlib.h>
    const char bottle_colour[][6]={"red","white","blue"};
    int main()
    int i,low,move[6],bottles[3][3];// bottles[bin][colour]
    for (i=0;i<3;i++)
    printf("Please enter the amount of %s bottles in each bin with a space inbetween each amount\n",bottle_colour);
    scanf("%i%i%i",&bottles[0],&bottles[1],&bottles[2]);
    printf("\n");
    move[3] += bottles[1][0] + bottles[2][0];// Moving all red bottles to bin 1
    move[3] += bottles[0][1] + bottles[2][1];// Moving all white bottles to bin 2
    move[3] += bottles[0][2] + bottles[1][2];// Moving all blue bottles to bin 3
    move[2] += bottles[1][0] + bottles[2][0];// Moving all red bottles to bin 1
    move[2] += bottles[0][1] + bottles[1][1];// Moving all white bottles to bin 3
    move[2] += bottles[0][2] + bottles[2][2];// Moving all blue bottles to bin 2
    move[5] += bottles[0][0] + bottles[2][0];// Moving all red bottles to bin 2
    move[5] += bottles[1][1] + bottles[2][1];// Moving all white bottles to bin 1
    move[5] += bottles[0][2] + bottles[1][2];// Moving all blue bottles to bin 3
    move[4] += bottles[0][0] + bottles[2][0];// Moving all red bottles to bin 2
    move[4] += bottles[0][1] + bottles[1][1];// Moving all white bottles to bin 3
    move[4] += bottles[1][2] + bottles[2][2];// Moving all blue bottles to bin 1
    move[1] += bottles[0][0] + bottles[1][0];// Moving all red bottles to bin 3
    move[1] += bottles[1][1] + bottles[2][1];// Moving all white bottles to bin 1
    move[1] += bottles[0][2] + bottles[2][2];// Moving all blue bottles to bin 2
    move[0] += bottles[0][0] + bottles[1][0];// Moving all red bottles to bin 3
    move[0] += bottles[0][1] + bottles[2][1];// Moving all white bottles to bin 2
    move[0] += bottles[1][2] + bottles[2][2];// Moving all blue bottles to bin 1
    for (i=0;i<5;i++)
    _if (move[i+1] < move && move[i+1] < move[low])_
    low = i + 1;
    printf("\nThe lowest amount of moves it would take is %i.",move[low]);

    Well, welcome to programming.
    The code as printed obviously isn't quite right due to formatting problems. There's a way to format it so it is displayed correctly but I don't know it off hand.
    If you use look at the build warnings you'll get a pretty good idea what is going on. In general there should be few or zero warnings in the build process. They're there for a reason. C provides a lot of rope.
    A few issues right away from the command line compiler:
    s.c:12: warning: format ‘%s’ expects type ‘char *’, but argument 2 has type ‘const char (*)[6]’
    s.c:13: warning: format ‘%i’ expects type ‘int *’, but argument 2 has type ‘int (*)[3]’
    s.c:13: warning: format ‘%i’ expects type ‘int *’, but argument 3 has type ‘int (*)[3]’
    s.c:13: warning: format ‘%i’ expects type ‘int *’, but argument 4 has type ‘int (*)[3]’
    I presume the following code
    if (movei+1 < move && movei+1 < movelow)
    low = i + 1;
    is
    if (move[i+1] < move && move[i+1] < move[low])
    low = i + 1;
    If so, I see the following warning:
    s.c:43: warning: comparison between pointer and integer
    Trust me, the issue is not portability at all nor a bug in Xcode. There are significant bugs in this code that just happen to compile.
    For instance, in line 12, the %s takes a pointer to a string yet a pointer to an array of strings has been provided.
    In line 13, the scanf %i operator requires a pointer to an integer yet a pointer to an array of pointers as been provided. You should have passed something such as &bottles[x][y] for each of those arguments.
    If you actually have 'move && move[i+1]' in the code, the code is comparing an address to an integer and I'm sure that's not intended.
    Lastly, 'low' is not initialized (those are difficult to find and the compiler does not warn of them even when using the -Wall flag). Probably should be set to zero. Different compilers and platforms vary on guarantees of a zero value.
    Since this is a project in school I will stop at this (and there are more issues in the code than I have stated).
    It'll all come in time. Good luck to you.

  • Issues exist in release build that don't exist in debug build

    I've been working on a Flex 4.1 project and have recently noticed an issue that does not exist in the debug build.  Then when you export a release build and run it the issue appears.  This is the only change that's made that breaks it.  To me this seems to be a bug in the player, SDK, or compiler that I might need to post, but I figured I'd submit it here in case I'm missing something.
    Basically it seems to be an issue with objects in an ArrayCollection being instantiated as the correct class type before being added.
    When in debug mode, if you set a breakpoint to view the objects in the ArrayCollection you will see them appropriately as their Strongly Typed class.  However, when the release mode build is run it will throw an RTE on that same line indicating that the ArrayCollection members are ObjectProxy and they can't be cast into their Strongly Typed class.
    Here's the RTE that happens and right now I just need to know if I'm missing something, or if this looks like a bug, and to which bugbase it should be posted (Flash Player, Flex SDK, Flex Compiler, etc.)
    TypeError: Error #1034: Type Coercion failed: cannot convert mx.utils::ObjectProxy@28250141 to
    <confidential package path>.PlayerPageSummary.
        at <confidential package path>.service::InitializeStorefrontServiceResponseCommand/execute()
        at org.robotlegs.base::CommandMap/execute()
        at org.robotlegs.base::CommandMap/routeEventToCommand()
        at MethodInfo-1674()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at <confidential package path>::<confidential acronym>ModuleActor/dispatchLocal()
        at <confidential package path>.live::InitializeStorefrontService/result()
        at mx.rpc::AsyncToken/http://www.adobe.com/2006/flex/mx/internal::applyResult()
        at mx.rpc.events::ResultEvent/http://www.adobe.com/2006/flex/mx/internal::callTokenResponders()
        at mx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
        at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()
        at mx.rpc::Responder/result()
        at mx.rpc::AsyncRequest/acknowledge()
        at DirectHTTPMessageResponder/completeHandler()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/onComplete()

    Alex,
    Thanks for your help and here's an update on this from me.  We did try out your suggestion to see if "PlayerPageSummary can be retrieved via getClassAlias".  I'm not the one that did the testing, but my teammate who did, said that the class being registered was not the issue.
    While he was working on that I further investigated our ANT builder and configuration to see what might have been different between ANT building non-debug SWF and Flash Builder building non-debug SWF.  Turns out that my teammate had added some [ArrayElementType] metadata that I was not aware of.  Once I realized that, I added it as metadata to be kept in my flex-config.xml which ended up solving the debug vs. release mode issues.
    Afterwards, I double-checked the livedocs and also did some Googling.  From the above it appears that debug SWF keep all metadata without you needing to explicitly tell it to. On the other hand, outside of a handful of metadata tag such as [Bindable] release builds neeed to be told what to keep.
    Does this sound right?
    Also, do you know off the top of your head if this is documented by Adobe anywhere and what the link is?  I had a real tough time finding anything mentioning how debug SWF retain all metadata.
    Thanks again for your help!

  • Release Build FAIL (but debug build works perfectly)

    Hi to all.
    I've a serious problem with making a release build of my project.
    Here the error screenshot:
    The debug build works perfectly
    I searched in the all hard drives for a "bin-release" folder, but it does not exists.
    How i can make a release build?

    Solved!
    Simply i added the following node to <linkedResources> on .project file:
            <link>
                <name>bin-release</name>
                <type>2</type>
                <location>my-realese-directory-path</location>
            </link>
    And the release build gone sucessfully
    Thanks!

  • Is there any actual difference between Release, Debug and Debug Local configurations in SSRS project?

    Is there any actual difference between Release, Debug and Debug Local configurations in SSRS project?
    For example in VC++ Debug build would have all optimization turned off (by default) and included additional Debug information in executable.
    Since there is no executable produced for SSRS - is there any actual difference between configurations? Or are they only for the purpose of deploying to different destination servers?

    Hi JoeSchmoe115,
    The Project Configuration and Configuration Manager is a feature supported by Visual Studio, on which Business Intelligence Development Studio or SQL Server Data Tools is based. We can use Configuration Manager to create and manage sets of project properties
    in project configurations. You are right that the project configurations is only for deployment purpose in a Report Server project.
    Reference:
    http://technet.microsoft.com/en-us/library/ms155802.aspx 
    Regards,
    Mike Yin
    TechNet Community Support

  • How can I build and Debug Tomcat 5.5 under Eclipse?

    http://jakarta.apache.org/tomcat/tomcat-5.5-doc/building.html
    I am doing some rearch on Tomcat and want to build and debug Tomcat5.5 under Eclipse. Originally tomcat is built with ANT, it downloads all components from different CVS and build them together.
    I'd like to import Tomcat Source code (only the core components, such as catalina and Coyota, Jasper) and build them with Eclipse Bilder, so I can debug it as a normal JAVA program under DEGUB-View.
    Who has such experience and help me? I havd built Jetty under Eclipse, but Tomcat is much more complex.

    Help

  • Salesforce and Crystal Reports XI Release 2 Full build with Service Pack 2

    Hi
    I need to install 'Crystal Reports XI Release 2 Full build with Service Pack 2' (CR XI R2 SP2) on a new computer but can't find the exe/zip file used previously to do that.
    The reason I need that particular version is because (as I understand it) its the version needed to interface with our Salesforce application.
    I have the CRXI original disks and keycode but as I understand it no manner of patching with SPs will get me to CR XI R2 SP2.
    I've tried various searches and frustratingly come up with only dead links (old BO forums and SAP forums).
    Is there a live link somewhere that I can use, or will a later version do the job?
    For example, alternatively, will I be able to use the CR XI R2 SP4 file instead?
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm
    Thanks for your help.

    Post Author: ejthunder
    CA Forum: Deployment
    Hello,
    Crystal Reports XI and XI R2 are not supported on 64 bit machines.  I have not heard of any plans to change this.  As you've discovered - the only version of Crystal Reports that is supported on a 64 bit machine is CR.NET 2005 (v10.2), the version that ships with VS2005.
    Your options are to downgrade your application to use bundled CR.NET 2005 or to deploy your CR XI R2 .NET application to a 32 bit machine.
    EJ

  • No release template matching the current build definition was found to create a release and deployment for.

    When I try to start a build that's linked to a standard release template (vNext template) I get "No release template matching the current build definition was found to create a release and deployment for." and the build fails. 
    I am able to successfully start a release from the Release management client so I don't think there is a problem with the release template. If I start a build with agent based template it works fine so I don't think there is any TFS-RM integration issue. 
    My environment is a 2013 Update 4 (VS, TFS & RM). I even tried to uninstall and re-install all the components still no luck. 
    I can't find anything useful (or obvious error) in the release management log files & event log (all the RM components log are set to Verbose)
    I even tried to trigger a release (vNext) via a REST API suggested in a website but no joy.
    Thanks in advance.
    Bharath

    Hi Bharath, 
    Thanks for your reply.
    Do you mean that you can start this standard release template from your RM Client? 
    There’s the below error message in your RM Server log, it seems RM Server try to find the Deployment Agent, but standard release needn’t the deployment agent.
    ErrorMessage="No communication from the deployer. Possible reasons include: 'Deployer is not installed', 'The service is stopped', 'Deployer is not well configured', 'Deployer is not responsive'"
    Additionally, try don’t specific the stage value in your build definition>>Process>> Release Target Stage, then queue build definition again.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Build and Debug Problem 10.2

    I just installed 10.2 and did a Build and Debug. I got an error that it couldn't run. It is saying that some property in the Oracle web determination has to be set in the application.properties file. I have no idea what the message is talking about. Any help is greatly appreciated.
    Thanks,
    Terry

    Thanks
    I changed the enable.debugger to true and saved the application.properties file
    Opened the project and did a build and debug. Got this message
    type Exception report
    message. Does the fact that this project isn't in the Projects directory matter?
    Thanks,
    Terry
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: Servlet.init() for servlet WebDeterminationsServlet threw exception
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:879)
         org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
         org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
         org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
         org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
         java.lang.Thread.run(Unknown Source)
    root cause
    com.oracle.determinations.interview.engine.exceptions.RulebaseLoadingException: could not load rulebase: E-Verify
         com.oracle.determinations.interview.engine.local.LocalInterviewRulebase.getRulebase(LocalInterviewRulebase.java:163)
         com.oracle.determinations.interview.engine.local.FileRulebaseService.<init>(FileRulebaseService.java:86)
         com.oracle.determinations.interview.engine.local.LocalInterviewEngine.initialise(LocalInterviewEngine.java:91)
         com.oracle.determinations.interview.engine.local.LocalInterviewEngine.<init>(LocalInterviewEngine.java:34)
         com.oracle.determinations.interview.engine.InterviewEngineFactory.createInstance(InterviewEngineFactory.java:19)
         com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext.init(WebDeterminationsServletContext.java:163)
         com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext.<init>(WebDeterminationsServletContext.java:91)
         com.oracle.determinations.web.platform.servlet.WebDeterminationsServlet.init(WebDeterminationsServlet.java:51)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:879)
         org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
         org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
         org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
         org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
         java.lang.Thread.run(Unknown Source)
    root cause
    java.io.IOException: Caught exception class javax.xml.stream.XMLStreamException: Unexpected schema version in screens file: 5
         com.oracle.determinations.engine.local.ScreensLoader.loadScreens(ScreensLoader.java:260)
         com.oracle.determinations.engine.local.ScreensLoader.loadScreens(ScreensLoader.java:139)
         com.oracle.determinations.engine.local.CachingRulebaseLoader.loadRulebase(CachingRulebaseLoader.java:308)
         com.oracle.determinations.engine.local.LocalEngine.getRulebase(LocalEngine.java:192)
         com.oracle.determinations.interview.engine.local.LocalInterviewRulebase.getRulebase(LocalInterviewRulebase.java:151)
         com.oracle.determinations.interview.engine.local.FileRulebaseService.<init>(FileRulebaseService.java:86)
         com.oracle.determinations.interview.engine.local.LocalInterviewEngine.initialise(LocalInterviewEngine.java:91)
         com.oracle.determinations.interview.engine.local.LocalInterviewEngine.<init>(LocalInterviewEngine.java:34)
         com.oracle.determinations.interview.engine.InterviewEngineFactory.createInstance(InterviewEngineFactory.java:19)
         com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext.init(WebDeterminationsServletContext.java:163)
         com.oracle.determinations.web.platform.servlet.WebDeterminationsServletContext.<init>(WebDeterminationsServletContext.java:91)
         com.oracle.determinations.web.platform.servlet.WebDeterminationsServlet.init(WebDeterminationsServlet.java:51)
         org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)
         org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:879)
         org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
         org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
         org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
         org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)
         java.lang.Thread.run(Unknown Source)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.31 logs.
    Apache Tomcat/5.5.31

  • Error opening test scripts in Build and Debug with Screens

    Hello,
    I am testing scenarios in the Build and Debug with screens mode in OPM. I save each scenario as a test script by clicking the Export button and saving. Some test scripts are able to be opened again, yet when I try to open others, I get the error message shown at the link below and am unable to load the test script.
    http://imgur.com/uqh80
    This did not happen previously, it just started today. All of these test scripts were created today, and the attributes have not been changes since the test scripts were created. This is seriously hindering my scenario testing ability.
    Does anyone know how to rectify this problem?
    Thanks,
    Christine

    Hi Kristy,
    I am in OPM 10.2.
    To troubleshoot, I tried redoing the test scenarios that werent working from scratch (rather than building off a previous scenario), and this time it worked. I am not sure why it works now and didnt before, and I am also not sure if they will continue working.
    I will continue creating the scenarios and will be sure to update if it fails again. In the case it does fail, I will try your export recommendation.
    Christine

  • IOS/AIR Running and Debugging Issues with Flash Builder

    I'm having very frustrating intermittent issues running and debugging Flex applications on an iPad 3rd generation retina with Flash Builder 4.7.
    Until this morning, launching on device using both standard and fast packaging worked pretty well. Every now and again, I'd get a dialog saying the packaging had completed successfully, but it hadn't. A quick change of the USB cable to another port on my iMac and it started working again. I'd also randomly get a "Error occurred while installing the application: Invalid <device> specified" error, which quickly went away.
    This morning, with the same code base, the same certificate and provisioning profiles, Flash Builder has only managed to successfully package and run my application on my iPad twice and I must have attempted to launch fifty or so times. Standard packaging, fast packaging and with and without the useLegacyAOT.
    Does this sound like a Flash Builder issue? Is my iMac USB driver dodgy? Has anybody else experienced this?
    Any help greatly welcomed!
    Thanks,
    Simon

    Hi I have had this problem sometimes. With my Mac Book Pro.
    Try making a new flex application and see if you have the same result.
    When I had this problem I created a new Application and copied every thing from my other application.
    This my be a hard solution but I don't no any others.

  • Hi,I have uploaded an app build for pre release  and its still under processing So i uploaded a new build but still the issues is not resolved.Please help...Thanks

    Hi,
    I have uploaded an app build for pre release  and its still under processing So i uploaded a new build but still the issues is not resolved.
    Please help...
    Thanks

    Hi smithin, 
    Thanks for visiting Apple Support Communities. 
    It sounds like you've submitted an iOS application to the App Store, which is being processed, but there's an unresolved issue.
    For additional help with this situation, Apple Developers can use the contact methods on this page:
    https://developer.apple.com/contact/
    All the best,
    Jeremy 

Maybe you are looking for

  • Hierarchy not getting displayed

    Hi, I have changed the hierarchy by manual update i.e i have added a node to the hierarchy . And after that i have saved and activated the hierarchy . It was giving an error saying "Number of nodes in the node is more than the hiearchy ". The solutio

  • Editing a pdf file

    I cannot edit a pdf file, although I can select the text I want to replace.  Instead I get text on top of the pdf text. The pdf file was originally an image, but I used "recognize text" before trying to edit the text.

  • Help with putting photos into ipod

    ok. i try to sync my photos to my ipod nano. every time i try to itunes says "could't copy photos to "Chris' Ipod" because there is not enough memory to store all your photos/folders". so i restored my ipod (deleting everything in it) and i tried to

  • Is this a bug? ⌘+SHIFT+A

    I often use Finder's ⌘SHIFTA to access my Applications Folder. It seems recently that it's overriding the currently open Finder window. That's to say, I believe ⌘SHIFTA used to open a new finder window with the Applications Folder but now if there's

  • How to properly reboot Exch2010 system w/ roles on different servers?

    I have a 300 user Exch2010/Win2008r2 network.  It has 1 server with CAS and HUB and one server with MBX roles.  I have a Blackberry BES on a different box.  The Mailbox Server looks like it is runnning low on RAM - it only has 10% free at the moment.