Debug and release desktop app as mobile

I built an app in Flash Pro where I could easily export an AIR app for desktop and an Android app.
I have now moved it to Flash Builder and am not sure how to accomplish this.
It is currently a Desktop app that bilds a release fine.
Now, how to get an Android version from it?

The difference between an AIR application and a browser
application is very small. Take a look at the Adobe training video
on this subject.
http://www.adobe.com/devnet/flex/videotraining/?sdid=DYOCT
In particular, the last part of day three. It's quite clear
and you can download the test setup for free. Be careful! I believe
that the Flex Builder configuration info is out of date, because
the paths for installation of LCDS have changed. I found a fix.
My notes, maybe a bit cryptic:
Make sure when you install LCDS, choose the Tomcat option.
This will install the server application.
If you're using the new version LiveCycle Data Services ES
2.6, you'll have to adjust a few things:
When you install LCDS, click the Tomcat option and continue
with the installation.
Instead of unzipping to C:\lcds\jrun4\servers\default.. use
this folder to unzip the server.zip file instead to
C:\lcds\tomcat\webapps\odt
Original adobe forum post:
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=60&catid=833&threadid =1387349&enterthread=y
Also, instead of using port 8700, the new version uses 8400.
1. Start the Server: Programs > LiveCycle Data Services ES
2.6 > Start LiveCycle Data Services Server. Allow the server to
start up.
2. Point your browser to
http://localhost:8400/ to test
the start page.
3. Your URL for this example will be
http://localhost:8400/odt/
Flex
I found that in many places you cannot use $(ENV_VARIABLE)
successfully.
Enter the exact string.
c:/lcds/tomcat/webapps/odt - for the training apps
Always, instead of /lcds/jrun4/servers/default/odt, use
/lcds/tomcat/webapps/odt
Start the data base
cd c:/lcds/sampledb
startdb.bat
LCDS local URL
http://localhost:8400/odt/adobeODT-debug/AdobeODT.html
http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=60&catid=833&threadid =1387349&enterthread=y
He knew what he was talking about. Thanks to rsadwick.

Similar Messages

  • Include Air ( desktop app ) inside Mobile app permited by Apple / Android?

    Include Air ( desktop app ) inside Mobile app permited by apple / android?
    This is my question....:
    I need a "viewer" app run in a desktop machine... via p2p... ( done and working )
    I will like to include it in my iOS / Android Release, an then by example move it to the documents folder.
    Run iTunes and then copy the file from the shared document folder.
    Is this permited by apple / android / adobe ?
    Thanks....

    just tracing some kind of tests I'm doing.
    A couple of hours ago I left working 2 instances of my Application, leaving alone this computer: one instance is the Mac desktop version and the other one is the Web version. In this case both versions were running on the same computer (an iMac with OS X Mavericks):
    1) the AIR/Mac version have been recompiled yesterday with the new AIR4(.0.0.1619 - AIR 3.8 is used to fall in a equivalent way - no changes)
    2) the Web version have been compiled targeting FP 11.8 and it is running on Chrome browser with PepperFlash NOT disabled (which reports version MAC 13.0.0.80, the latest)
    I left working both the Mac and the Web versions of the Application opened on the pc screen (= not minimized) but kept totally behind some Terminal/ssh windows (= not on OS focus and the system is not asked to update any screen area of the app for sure).
    I came back after about 2 hours and I got the browser version connected&running (but it is not a rule) and I also found the AIR-based Mac version disconnected (uau, usually I found the app disconnected but with the screen freezed at last user look ->) which rapidly reconnects upon my click on the Apple dock icon (bring to front).
    Why these different behaviours? I ask to myself.
    The two versions of the software are TOTALLY the SAME application: except for the first Flash file (a 24kb swf file for the Web version and a 170kb dmg file for the Mac version), basically a platform-dependent loader, both versions loads the same remote swf modules. Of course t is AIR (or my first Flash file?).
    I attach the source code of the Mac version of the [first file] AIR-based application at the following url:
    http://92.63.230.100/others/others/wtstarter_mac.as.txt
    _Adobe_, is it a bug? isn't it?
    mc

  • Compiling differently for debug and release

    I want to produce slightly different .class files for my debug and release compilations. For debug, methods like toString() should return rich information which should not be present in the release version. In fact, I want most of my debug specific code to not be included in the final release to keep ti's file size down.
    I realise I can do this by creating something like
    public interface MyGlobals {
        static final boolean DEBUG = false;
    }and implementing this on any class that needs to do debug specific work. However, I'm in a bit of a chicken and egg scenerio. This file needs to exist during development time so that every class that needs it can implement it - however, this would prevent me from dynamically changing it based on whether I'm doing a debug or release build. On the other hand, if the file is generated automatically at compile time, all the classes that need to refer to it will need to refer to a non-existant source file, which will cause problems in my NetBeans IDE.
    Is there a way around this? It would be nice if there was some sort of a configuration file you could specify to to alter how the code is generated. Something similar to C++ #ifdef.

    I realise I can do this by creating something like
    public interface MyGlobals {
    static final boolean DEBUG = false;
    /code]You should be careful about this, by the way, rember that this kind of constant value gets compiled in to classes that reference it, and java doesn't always pick up the need to recompile when the source of MyGlobals changes.
    On the other hand, if you don't declare it final then the compiler can't optimise out code that you want it to exclude for you.

  • What is the primary difference between Debug and Release build?

    I'm coming from the world of VS, where there's a clear distinction between a Release and Debug builds. In Xcode I can't seem to see how two are different and how would I benefit from, say, a Debug build. Can someone explain this for me?

    The differences between the Xcode debug and release builds are similar to the differences you'll find on any other system, though the Xcode interface might not present them as obviously. Basically, a debug build preserves all kinds of information that was developed during compilation but is no longer necessary at runtime. The presence or absence of this information (e.g. symbol tables and mappings which provide the original name of each source code variable and the source code line number corresponding to each instruction), becomes increasingly obvious as you use gdb and other debugging tools.
    We normally would never want to release a debug version (in the iOS case, of course, it would never be accepted) because the binary is usually much larger and the performance will probably be compromised as well. For example, a typical debug build will have many perfomance optimizations turned off because these can make debugging more difficult. It's also common to enable "assert" statements in a debug version. These will bring the program down rather than giving the user any options or attempting recovery.
    For more info specific to Xcode, see [Build Configurations|http://developer.apple.com/library/ios/documentation/DeveloperTo ols/Conceptual/XcodeBuildSystem/400-BuildConfigurations/build_configs.html#//appleref/doc/uid/TP40002692-SW7] in the +Xcode Build System Guide+. To get into lower level details, refer to the gcc docs, maybe starting with [3.9 Options for Debugging Your Program or GCC|http://gcc.gnu.org/onlinedocs/gcc/Debugging-Options.html]. You might also want to take a look at your Target Build Options for the Debug configuration (Project->Set Active SDK->Use Base SDK and Project->Edit Active Target->Build). There's a one-to-one mapping between many of these settings and the gcc options.
    \- Ray
    p.s.: Didn't mean to repeat Xnav's points. As usual, I was still editing long after he posted! To clarify one difference: Selecting the Edit Active Target menu item gets you to the same place as double clicking on the icon for the active target in the Targets group of the Groups & Files tree. - R
    Message was edited by: RayNewbie

  • Different environments created for Debug and Release libraries

    Environments created in Debug mode cannot be read by software compiled in release mode. The same is true for the reverse.
    Both libraries compiled with VS.NET 2005 (C++). The environment created in Debug mode is slightly different than the library created in the Release mode. I would assume that this is a bug?
    __db.001 - no change
    __db.002 - DIFFERENT
    __db.003 - no change
    __db.004 - no change
    __db.005 - DIFFERENT
    __db.006 - no change
    Aeronautical.dbxml - no change
    log.0000000001 - no change
    The environments are created using the following flags:
    // Flags required when opening the XmlDB Environment
    m_environmentFlags =      DB_CREATE |     // If the environment does not exist, create it.
                             DB_INIT_LOCK |     // Initialize the locking subsystem
                             DB_INIT_LOG |     // Initialize the logging subsystem
                             DB_INIT_MPOOL |     // Initialize the cache
                             DB_INIT_TXN |     // Initialize transactions
                             DB_THREAD;          // Ensure Environment is
                                                 // free-threaded
    The database contains a single XML document.
    An attempt to open() fails with the following error message:
    DbEnv::open: No such file or directory

    Hey Ron,
    Thanks for answering so quickly. Having release and debug builds able to manipulate the same environments is a requirement of convenience. Our project builds both release and debug versions of our software and distributes both versions to the development team daily. The team is encouraged and expected to run both debug and release builds to test their contributions and because the system opens the database (which is distributed with the build) upon startup, one of the two will always fail to load. That leaves us with two obvious solutions/workarounds. The first being to distribute the build with 2 environments and ensure that the build chooses the correct environment based on whether it is debug or release. The second is to rebuild the debug library without the --enable-diagnostic switch.
    We have no immediate need to enable the diagnostic information (that I am aware of...in fact I don't even know what types of checks are put in that would be helpful).
    Do you have an alternative solution that others have used as a work around for this?

  • Different behaviors of NSTask within Debug and Release configuraton

    Hey there,
    I am writing my first OSX application. It will be a starter helper for some daemons.
    In order to start the daemons I am using NSTask but this class behaves completely different within the two build configurations (Debug and Release).
    If I choose Debug - everything works fine, my daemon (apache) gets started. But if I choose Release, I get this error message in the log console:
    Jan 11 22:50:49 Synthomat [0x0-0x682682].com.yourcompany.PAMP[24421]: httpd (no pid file) not running
    I know, this is an apache specific error message. But why does it not appear when I choose the Debug environment? Are in Release some environment variables missing or so?
    Here is my code part:
    // get bundle path
    binDir = [NSString stringWithFormat:@"%@/Library/bin", [[NSBundle mainBundle] bundlePath]];
    // compose command path
    NSString *command = [NSString stringWithFormat:@"%@/apachectl", binDir];
    // run command
    [NSTask launchedTaskWithLaunchPath: command
    arguments:[NSArray arrayWithObjects:@"start", nil]];
    Any idea, anyone? - Thanks in advance

    synthomat wrote:
    My idea was to distribute a full web stack within my application. Thus there should't be touched other system directories or files except the ones in my application bundle.
    Launchctl is similar to xinetd. You can run it in user space out of your own directories.
    Its not the apache which comes with osx!
    Is it the same one in XAMPP?

  • Converting desktop app to mobile app

    hi i have developed a simple java desktop app for making currency conversions, now i want this to work on my mobile, what are the steps to take to convert it, or do I have to start from scratch? thanks

    I think it'll be easier to start from scratch. Java ME classes, even those with the same package and class names, are not the same as their Java SE big brothers.
    Here's a link to a [J2ME Tutorial|http://today.java.net/pub/a/today/2005/02/09/j2me1.html].
    If you have any Java ME related questions, please post them to the [CLDC and MIDP forum|http://forum.java.sun.com/forum.jspa?forumID=76].
    luck, db

  • Communication between a web app and a desktop app

    Hi,
    I would like to know how i can make a web application communicate with a desktop application (protocols,technologies, patterns�).
    And if I'm using a jsp web app and a java se app?
    Indeed, i have a desktop app. which use some information provided by an user via a web app,and the work performed by the desktop app cannot be performed inside a web container.
    Thanks.

    you mean it the other way around I think. You have a desktop app that needs to communicate with a web application.
    There are multiple ways.
    1) use plain old XML combined with URLConnection / HttpClient
    2) use XML-RPC
    3) use SOAP
    and there are more even. You will need to decide for yourself which technology can do what you require.

  • Difference between debug and release

    Hallo,
    I'm in trouble with sending CAN-Message to servo-controllers (Lust).  In debug -mode all works fine, but in release it seem's that there some leaks in the message.
    I've already added some delays between send-orders, but it doesn't help.
    the CAN is a USB-adapter from PEAK.
    1. Does CVI make some changes as I include the peak.dll (included in my project) from debug to release?
    2. Is there some alternative of using the Delay-Command in windows?.
    greetings
    F.A.

    Debug mode and Release mode are different configurations for building your .Net
    project. Programmers generally use the Debug mode for debugging step by step
    their .Net project and select the Release mode for the final build of Assembly
    file (.dll or .exe). follow link for more information
    http://net-informations.com/faq/net/debug-release.​htm
    cros.
    http://net-informations.com

  • Splash screen for a desktop app (non mobile app)

    I'm using fb4linux, 4.5.1A SDK, I'm developing a non-mobile (i.e. desktop application) and I would like to add a splash screen to it.
    I've added mobilecomponents.swc to the library path, and the application starts like this:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx"
       width="400" height="400" xmlns:local="*"
       preloader="spark.preloaders.SplashScreen"
       splashScreenImage="@Embed('assets/splashscreen.png')"
       splashScreenMinimumDisplayTime="1500">
    When I debug it, no splash scren is shown and I get the following error:
    ReferenceError: Error #1065: Variable flash.display::StageAspectRatio is not defined.
        at spark.preloaders::SplashScreen/prepareSplashScreen()[E:\dev\4.5.1\frameworks\projects\mobilecomponents\src\spark\preloaders\SplashScreen.as:340]
        at spark.preloaders::SplashScreen/Stage_resizeHandler()[E:\dev\4.5.1\frameworks\projects\mobilecomponents\src\spark\preloaders\SplashScreen.as:407]
    The problem seems to be triggered by the line that sets the preloader, because if I remove it, the error is gone (although no splash screen is shown either).
    Any ideas how to make it work?
    Thanks!

    import [install folder]\Adobe\Adobe Flash Builder 4.6\sdks\4.6.0\frameworks\libs\mobile to your build path
    Note: You must add the frameworks\libs\mobile\mobilecomponents.swc to the library path of the application to support the splash screen in a desktop application.

  • Converting JavaFX based desktop app to mobile platforms

    Hello all
    I'm in the process of building a java desktop application using JavaFX and FXML as the front end code platform. However I'd like to be able to port this to mobile platforms with the least amount of code modifications, and was told that JavaFX would work for this. Does anyone have any advice on how this could be achieved ?

    I would love to know this too.
    Lots of info going around about mobile possibilities.
    I do not have an answer, but I do have a point to start looking at.
    I came across the following ORACLE blog written 2013-11-12.
    Hopefully someone can explain it better or give easier steps to follow on how to achieve android compatibility as explained on this page.
    To me it looks like you can actually run JAVAFX on android phones by using this.
    If anyone understands this article then please write an easy to understand howto.
    Would love to know how to incorporate this into Netbeans, but any other easy to understand way will work.
    This will be a killer function for JAVAFX :
    https://blogs.oracle.com/jfxprg/entry/how_to_build_open_javafx

  • Downloading and installing desktop apps from Creative Cloud

    This movie gives you a quick overview of how to download and install the Adobe Application Manager and all of the desktop applications that come with Creative Cloud membership.
    Watch the movie (02:17 min.)

    Completely agreed TristanSF.
    Also, this page, https://creative.adobe.com/#apps, has a Download link for Gaming Tools that only gives an error and no download. I asked the support team via chat and I was told that he would recommend the phone service to me.
    Wich I called and I was told they dont know at this time.
    The download link takes you to this page: http://www.adobe.com/go/GamingTools
    That link forrwards you to: https://www.adobe.com/products/gaming/tools.html
    That link opens up a blank page and my web browser just tells me "Error on page" and leaves an Exclamation point inside of a triangle at the bottom left.
    No download starts or stops, no activex prompt, nothing.

  • How do we download adobe air and pdf desktop app

    How do I save a Power Point document as a PDF?

    To convert a PowerPoint file to a PDF, you'll need either our CreatePDF service or our desktop application, Adobe Acrobat.

  • No sound with WIndows 10 and the Desktop-App

    Hi guys,I've updated my computer to Windows 10 but now Spotify isn't working anymore. It seems that songs are playing, but there is no sound (I've already checked the loudspeakers, also on Windows). The WebPlayer is working without problems.Can anyone help me with this problem?Thanks a lot!

    I had the same issue. After I updated to Windows 10, Spotify would play the song, but there was no volume no matter how much I toyed with the volume settings. SOLUTION: Uninstall Spotify and then Reinstall it.  This solved the issue for me. Best of Luck!

  • Updated desktop app and not all apps are showing  that are downloaded to my computer already

    have deleted the ppm.db file per chat with tech support and reinstalled desktop app and then per a forum just changed the same file by adding .old to the end of it but still only showing 2 out of 6 or more application  that are installed on my computer but not showing in the desktop app

    Please try to perform the steps in:
    Re: CC Apps showing not installed on Mac OSX 10.8.4
    Re: why aren't my apps showing up in CC desktop?
    It should help you.
    Regards
    Rajshree

Maybe you are looking for

  • Please tell me i'm crazy

    lately i'm becoming slightly annoyed over a few things regarding my MBP. some of these things might be a result of being a little nit-picky, but i need to know if they are things i need to be concerned about. first thing: the infamous warped screen.

  • E-Rec - Add text to Notes tab of Int. candidate application wizard

    Hello, I have a requirement to add some more text to the Notes Tab of the Internal candidate application wizard. I have defined the text using SOTR_EDIT. I find that texts available in the notes tab of the internal applicant start page are logically

  • Multi-DC Auto-RP with MSDP Design Question

    Most of Cisco design seem to recommend Anycast....then the latest DCAP came out which apppears to combine anycast, auto-rp and msdp but there isn't much sample configs: I want to setup the multicast base on page 2-46. http://www.cisco.com/en/US/solut

  • RSNAST00 Reissue only last message not all

    We want to reissue only the last message output of the Invoice, RSNAST00 has the option to resend message, but it sends all the successful messages. Is there a way to only send the last one. I know that there are other options of recreating the last

  • Arabic in combobox

    Hi, I am using a combo box that is populated with arabic data, the problem I am facing is that the text in the combo box is being shown from left to right while arabic language is from right to left. I used TLF for text editor and it's working great,