Possible to pack Air runtime with app?

Many friends told me if my app need something else to be installed to run, they will quit. I think unless most mobiles installed Air runtime in the future. We must make the installation more user-friendly.
Can I pack the runtime together with app? Or is ther another work around?

Yes, you can create an Adobe AIR app with all the runtimes needed packaged into a single installer.
Here’s some info from adobe
http://help.adobe.com/en_US/air/build/WSfffb011ac560372f709e16db131e43659b9-8000.html
hope that helps
glenn
tinylion uk

Similar Messages

  • Possible to pack Air runtime with mobile app?

    Many friends told me if my mobile app need something else to be installed to run, they will quit. I think unless most mobiles installed Air runtime in the future. We must make the installation more user-friendly.
    Can I pack the runtime together with app? Or is ther another work around?

    Flex 4.6 / Air 3.0 introduced Captive Runtime, which is exactly what you are requesting.  You choose the version of Flex/Air to be included in your app and it is bundled into the build.  This has been the only option for iOS, but is now available for Android as well.  When exporting a release build of your project in the newest version of Flash Builder, there is an option in the Deployment tab to "Export application with captive runtime".
    Check out this link for more information:
    http://www.adobe.com/devnet/air/articles/air3-install-and-deployment-options.html#articlec ontentAdobe_numberedheader

  • Packaging AIR runtime with app?

    Would it be possible to have an option to package the AIR runtime with the APKs
    created through Flash Builder?  Say, a ride-along package that would detect if the
    given or higher runtime of AIR is installed, and if not, install it before launching the
    app.
    For the foreseeable future (the next year, at least), most new users of any given app
    created this way will not already have the AIR runtime on their phone.  This would
    spare them having to initiate another download when they thought they were about
    to enjoy the product.  (No matter how you disclaim it, many customers are going to
    think you can start an app right away after downloading it from the Market, because
    this is how practically all non-AIR apps work.)  Waiting for an install is okay if the app
    automatically launches afterward: this will not take nearly as long, and (importantly!)
    requires no further customer action to actually launch the app.

    I'm sure it would possible, but consider that as soon as someone downloads
    an AIR Android app, they've already got the runtime, and with notifications
    for updates already a common thing, they'll be notified from the Market
    whenever there's an app update (runtime or your app).
    I think it would be nice as an option, but just today I got an email from
    the Android Market explaining important changes to the store, and
    specifically they say no .apk larger than 50 mb. So I'd rather not have the
    runtime packaged with the app, as that adds to the overall filesize. We
    already have to deal with that on iOS devices, since Apple won't let us
    download compiled code. So you get an automatic 3-4 mg overhead with all iOS
    apps. Luckily there's no real limit on iOS app sizes.
    I do agree though it'd be nice to have the install process worked out so the
    app prompts for the runtime if needed (as it works now) but have the runtime
    know to launch the app again once it's installed.
    iBrent

  • Distributing AIR Runtime with a commercial AIR app: permitted?

    I did some Googling around for the answer to this, and I
    discovered, according to a couple bloggers, that while it's
    definitely permitted to sell applications you make with AIR, you
    cannot sell the runtime. That makes perfect sense, but I'm
    wondering if that comes into conflict with including the runtime on
    a disc/in a paid download.
    Similarly to how Windows games include a DirectX installer
    for people who somehow don't have that yet, I was wondering if it
    violates some kind of copyright or intellectual property thing to
    include an Adobe AIR runtime installer in whatever package I
    distribute my application in. That way, rather than giving someone
    a .air file that they have no idea what to do with (unless they
    read the manual, which many people, um, won't), I can include an
    installer program for each of the three platforms which will either
    open the AIR file if it can, or tell the user "This program needs
    AIR to breathe!" or something and then installs the runtime. That
    way they don't have to go download something else.
    Just a convenience thing that I'd like to do, so I want to
    make sure it's permitted.

    You will need to apply and sign a license for Runtime
    redistribution.
    More info. here:
    http://www.mikechambers.com/blog/2008/04/07/redistributing-the-adobe-air-runtime-installer /
    -ted

  • Need how to install Air Runtime  and App from CD Rom

    I am looking for some direction on how to bundle the Air
    runtime and my app together in a single executable file from a CD
    rom, for MAC and WIN. I already have applied for and received
    licensing necessary form Adobe and I have the dmg and exe of the
    Air runtime.
    I have the seamless install working where internet access is
    available however the initial group who will receive the app won't
    have internet access at the time of distribution so the bundled
    install will be from CD rom.

    Since you applied for the distribution from Adobe you should
    have received a link to a page where you can download what they
    call the "side-car" installer. It's basically an installation
    system they are making available to developers that can be easily
    configured to deliver a bundled runtime and application
    installation for Mac and Windows.
    Check your email again and see if you can't find a link in
    there pointing you to a download page for the AIR runtime as well
    as the aforementioned side-car installer. For those who don't know,
    here
    is where you can apply for a redistribution permit for AIR.
    I have a small tutorial posted that might be of help to you
    on my blog:
    http://blog.arnimaack.com/flex-air-series-4-air-all-in-one-installers-on-CD-DVD

  • Possible bug in Photoshop CS6 with app.activeDocument.path.

    JavaScript running in Photoshop CS6 under OS X 10.7.5 returns the wrong result for app.activeDocument.path when the file is located on the boot drive. The result is undefined and an error message incorrectly states that the document has not been saved yet. If the file is located on a remote volume, the correct path is returned.
    To reproduce this problem, create a new file in Photoshop CS6 on a Mac. Save the file to the desktop. With the file still open, run the following script in ExtendScript Toolkit.
    // start script
    var thePath = app.activeDocument.path;
    alert(thePath);
    // end script
    Running the same script with a file located on a server volume open in Photoshop correctly returns "/path/to/file.psd" instead of undefined and no error occurs.
    This appears to be a bug in Photoshop CS6's JavaScript implementation. This problem did not exist in Photoshop CS3.
    A similar issue prevents Photoshop CS6 from saving files to the boot drive using activeDocument.saveAs.
    Has anyone else experienced this problem? If so, have you discovered an alternate method to determine the file path or save a file on the boot drive?

    Don't know if this will help much but at least you can use it to check a document's filepath without throwing an error. And maybe tell if the problem is with the Photoshop DOM.
    function hasFilePath(){// returns true/false
        var ref = new ActionReference();
        ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
        return executeActionGet(ref).hasKey(stringIDToTypeID('fileReference'));
    function getFilePath(){// returns path as a string if exists, undefined if not
        var ref = new ActionReference();
        ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
        var desc = executeActionGet(ref);
        if(desc.hasKey(stringIDToTypeID('fileReference'))) return decodeURI(desc.getPath(stringIDToTypeID('fileReference')));

  • Package AIR Runtime together with AIR app

    Hello,
    Is it possible to package AIR Runtime together with the AIR
    app so when users install my AIR app by clicking on the .air file,
    they don't have to fetch the runtime over the internet?

    Yes, you can do this by signing up to redistribute AIR. See
    http://www.adobe.com/products/air/runtime_distribution1.html.
    If you're just looking for a better online install
    experience, however, check out the "badged install" feature. See
    http://livedocs.adobe.com/flex/3/html/help.html?content=distributing_apps_3.html.
    regards,
    Oliver Goldman | Adobe AIR Engineering

  • Air runtime questions

    Hi all,
    We're eyeing Air suspiciously and thinking about trying to use it for distributing various apps.
    Our main concerns are all about the runtime licence model.
    1) The Runtime distiribution licence agreement says:
    Licensee may not distribute the Adobe AIR installer or installer files for purposes of bypassing installation of the Adobe AIR Runtime, an Adobe AIR application, or the EULA.
    Does this mean if we bundled the runtime distribution installer on a CD and tried ot install it as part of our installer using the -silent install method we would actually be breaking the licence agreement?
    2)Say we install the runtime this way and then our app. A new version of air comes out, the user is then quizzed by Air whether they want to upgrade.
    There is no way to avoid this?
    3) And when if they do upgrade I've heard a lot of stories about apps suddenly becoming unuseable. Can someone confirm it doesn't just break the app beacuse it wasn't written for that version, it is simply that runtimes are not backward compatible?
    I think I know the answers to these questions but I need to ask to get total clarity as basicaly it seems ludicrous if you want Air to be taken up by the raft of developers who, like me, are desperate to walk away from mdm Zinc.
    ta...

    1. There is a redistribution agreement you can sign to bundle an AIR Runtime with your app. installer.
    2. Setting Manager can set to stop update.
    3. We have made great effort to make sure new releases are  backward combatible.

  • Air runtime memory usage

    I am developing games on Android devices and I find the total memory usage of my air application presented in Scout is always smaller (100M) than the memory usage shown in the Taskmanager.
    Some articles say that the Scout does not count the memory used by the air runtime.
    However, it is not possible that the air runtime occupies more than 100M memory, right? Especially, on Android devices?
    I have also written a very small test app, it only occupies 20M memory (containing the air runtime).
    My question is how can I reduce the additional 100M memory not presented in Scout?

    I am developing games on Android devices and I find the total memory usage of my air application presented in Scout is always smaller (100M) than the memory usage shown in the Taskmanager.
    Some articles say that the Scout does not count the memory used by the air runtime.
    However, it is not possible that the air runtime occupies more than 100M memory, right? Especially, on Android devices?
    I have also written a very small test app, it only occupies 20M memory (containing the air runtime).
    My question is how can I reduce the additional 100M memory not presented in Scout?

  • Embed Air Runtime - Get Air Runtime | Pros and Cons?

    Preparing an App for Android (never done for Android before)
    I find in the Air for Android Settings > Deployment.
    Embed Air Runtime with application
    Get Air Runtime from Google Android Market
    Which to use for what?
    Any help is greatly appreciated.

    embedding the air runtime increases the size of your app, but gurantees users will not need to do anything else (like download and install the air runtime from the google android market) to use your app.

  • Android AIR Runtime Not Bundled?

    Hello,
    I am using Flash Builder to build my app for Android. I have selected the option to bundle the AIR runtime with the application. When I debug the application on the Android device, it still prompts me to download the AIR runtime. Why is it not working as expected?
    thx

    It can't be done yet, but it is a requested feature. Not sure when it might be a reality.
    Meanwhile, only the first AIR app would have that extra download, and in some cases AIR would be preinstalled on the device. So, given that here isn't a choice, you should learn to live with it for now!

  • Mobile App Packaged as Desktop (with air runtime)???

    Okay, so I have this application that is basically the ubiqutous page turning component you can find online, but modified for mobile.  It's for kid's storybooks.  It's a mobile flex application in FlashBuilder 4.6.  When I export release build for my mobile project, I see an option for desktop .air packaging rather than mobile.  Works and looks great....but you can't sell a .air file on Mac App Store.  I want to bundle the air runtime to create a  .app, which hopefully I can get on the app store.  However, this option is not available in a mobile project.  I've tried figuring it out via commandline...
    java -jar adt.jar -package -keystore ./jamesabrannan_cert_development.p12 -storetype pkcs12 -target bundle ShortBook.app ShortBook-app.xml ShortBook.swf
    but that results in.... no such file /Users/jamesabrannan/Documents/test/ShortBook.app
    So then I saw that perhaps some of the google results might be wrong/outdated and I was actually simply supposed to indicate the folder the app was to be created in, okay, so....
    java -jar adt.jar -package -keystore ./jamesabrannan_cert_development.p12 -storetype pkcs12 -target bundle . ShortBook-app.xml ShortBook.swf
    But that results in....
    Files "/Users/jamesabrannan/Documents/test/ShortBook-app.xml" and "/Users/jamesabrannan/Documents/test/ShortBook-app.xml" have conflicting package paths: /Users/jamesabrannan/Documents/test/ShortBook-app.xml
    What I want to do is take my mobile application and package it with the OS X runtime for adobe air.  It must be possible, but I'll be darned if I can figure it out.  Looks like I have AIR 2.6, or whatever is standard in FlashBuilder 4.6
    I'm trying to avoid creating a desktop app, adding the mobile framework, and then transfering my code to it.
    Any help would be appreciated.  This would be a great boon, as some tablet apps would be totally applicable - with a few slight modifications - on a desktop.
    Thanks,
    James A. Brannan
    Brannan Technical Solutions LLC
    www.floopiebooks.com

    If you're using the MAX preview release then make sure both the device and your PC are on the same network and connected.

  • Silent install Air Runtime and Air App with custom installer?

    I want to use a custom installer that will perform some actions, and then silently install air runtime and an air application. The goal here is to be able to perform a customized install for an Air application (for a user that might not have Air installed) without confusing the user with multiple install screens. Can I use a custom installer to silently install Air (if the user doesn't have it installed) and the Air app? If so, are there any restrictions on the custom installer? If there are any examples of this, please provide the links.

    Since you applied for the distribution from Adobe you should
    have received a link to a page where you can download what they
    call the "side-car" installer. It's basically an installation
    system they are making available to developers that can be easily
    configured to deliver a bundled runtime and application
    installation for Mac and Windows.
    Check your email again and see if you can't find a link in
    there pointing you to a download page for the AIR runtime as well
    as the aforementioned side-car installer. For those who don't know,
    here
    is where you can apply for a redistribution permit for AIR.
    I have a small tutorial posted that might be of help to you
    on my blog:
    http://blog.arnimaack.com/flex-air-series-4-air-all-in-one-installers-on-CD-DVD

  • Numerous problems with the Adobe AIR runtime for Android

    I created a app on the platform Adobe AIR for Android, which requires for AIR. The app is very popular in the Android Market, but many users complain of problems with the installation of Adobe Air runtime.
    For example these phones users: LGE LG-P698, LG Pecan, HTC Wildfire. But judging by the fact that users have access to the installation of Air, their phones are compatible with it.
    Tell me how do I solve the problem?
    In addition, I have a few questions:
    1. Decides whether the problem of export application with embedded AIR runtime?
    2. I build my apps with the help of ADT. How in this case to make embeding AIR runtime?
    3. Is it possible to prompt the user to download and install older versions of AIR? Where to find its?
    I hope to help, because the problem is global.

    Hi Astraport,
    I think you should embed the air runtime in your application,
    Some time ago I've written a step by step guide, have a look at this post:
    http://forums.adobe.com/message/3961579#3961579
    I hope it helps

  • Sidecar AIR Runtime install with  Native .exe installer using ADT

    I have packaged my AIR app into a Native .exe installer using ADT. If the user does not have air installed and they are connected to the internet, the AIR runtime is automatically installed.
    Is it possible to package the AIR runtime into the exe so that if the user is not online the AIR runtime is installed?
    I have experimented with the sidecar install and .air file but ideally I want to only have the one file(.exe). I already have a distribution licence from Adobe.

    manicjames wrote:
    I have packaged my AIR app into a Native .exe installer using ADT. If the user does not have air installed and they are connected to the internet, the AIR runtime is automatically installed.
    Is it possible to package the AIR runtime into the exe so that if the user is not online the AIR runtime is installed?
    I have experimented with the sidecar install and .air file but ideally I want to only have the one file(.exe). I already have a distribution licence from Adobe.
    This isn't available at this time, but I think it's a great idea.  You might want to add a feature request for this over at ideas.adobe.com and bugbase.adobe.com, or review and vote for these current feature requests if they provide for what you're looking for:
    Portable AIR Apps
    Create portable AIR apps
    If you decide to add a new request, please post back with the URL so others can cast their votes and add comments.
    Chris

Maybe you are looking for

  • Plz provide the alv report

    The purpose of the report is to serve as an indicator for when an existing Purchase Requisitions is updated, and requires a Purchase Order to be changed.  Standard SAP offers no real efficient way to communicate changes/updates between Purchase Requi

  • Save pdf documents.

    Hi, I want to force the browser to ask whether to save or open pdf documents like other documents and not automatically open the pdf documents in the browser. I pull pdf files from a folder and display on the webpage. When the user click on the link,

  • Re: Purchase Order

    Hi , While working for a purchase order when I enter all the data like Vendor, Pur. Org Pur. Grp. Com. Code. & Material, The system is picking up a plant which is of no use to me.I want that As I enter all the data I mentioned above the system should

  • BI Publisher - Stop hyperlink underlining in html

    Hi, My users are developing many templates using the word plugin and uploading the rtf files to publisher. We can create hyperlinks to other web pages and they work correctly BUT they always come out underlined in the html document we are generating.

  • Sending mail without having to go to the SOST

    hi, i want to send an mmmmail directly from my Zprogram, i mean i dont want to go to the SOST to trigger the send process. How can i do that? please pay attention that i just want to send my mmmmmail, not the others mmmmmails.