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!

Similar Messages

  • Android Air runtime installation

    Hi,
    Is there any option to include Air runtime installation in the app installation?
    Now when I first open my app I have to install the Air Runtime and then it takes me to Android Market and that confuses the user.
    Thanks,
    Eyal.

    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!

  • Android AIR does not launch - app opens then immediately closes

    I have created a very simple app using Flash - AIR for Android extension. I have confirmed that my Droid2 device is connected via the DDMS through the Android SDK, and have published the app to the device following the instructions here: http://www.adobe.com/content/dam/Adobe/en/devnet/devices/pdfs/device_lab1.pdf. When published, the APK was packaged successfully, but get the following warning:
    Application has not specified its permission requirements in application.xml. This thread touches on it http://forums.adobe.com/thread/740905, but doesn't say whether to fix it, or what persmissions are necessary.
    On the phone I can navigate to the app, however when I tap the app icon, the app closes as soon as it opens.
    Any thoughts on what is causing this and how to fix it? Thanks for any help!

    To test AIR runtime is working on my device/phone, I downloaded an Adobe AIR app from the Adobe Showcase, and discovered this app does not launch either, so I suspect the Adobe AIR application on my device/phone is not working.

  • Air runtime bundled with exe installation issue

    Hello,
    I am sorry if my question is not relevent but i am facing an installation issue with air bundlled with my exe app.
    I have created my air app as  myApp.exe  with flash cs5.5.Air 2.6 has been embeded with the package.If i try to install the package on a system without having internet connection, its asking "Air runtime not found, please download or contact app provider".if net connected,then it will install fine.Actually my app requires no internet acces and purely its an offline desktop app.
    Actually is there any background checking / updation is going with the bundled air ?
    i have stucked in between this.any help would be appreciated.
    thanks,
    Arunraj

    Is this problem with the installer, or your application at first launch?  Would it be possible to send this to me at [email protected] so I can give it a try?
    Thanks,
    Chris

  • Install Air runtime ON samsung galaxy 3 s apollo

    hI all,
       Can I run android app from adobe flash CS 5.5 on samsung galaxy 3S gt-i5800 (Apollo)?
    I can't install and air runtime.

    Not all add-ons are available for Firefox mobile, but AdblockPlus is.
    https://addons.mozilla.org/en-US/android/

  • Backward compatibility for installers when switching to bundled (aka captive) Air runtime

    The non-bundled versions of the installers for desktop Air applications on Mac have the nice feature of ensuring that multiple versions of the same app cannot exist on the system. When a new version of the app comes along, the installer removes the old one as part of the upgrade. I've also noticed that if you attempt to install the same version of the same Air application, Air offers the option of simply uninstalling the existing version (a roundabout way of exposing an uninstall of an Air app).
    We are thinking about switching over to using a bundled Air runtime for our product, which means that we have to write our own installer for Mac. However, we need to be able to detect if a previous, non-bundled version of our Air app exists on the system, and if so, uninstall it before placing the new version down.
    How does Air keep track of what's been installed on the Mac? Does it expose an API that we could call from within our custom installer to uninstall a specific non-bundled desktop Air application? If not, does Air maintain installed app location data in a way that an outsider could possibly consume?
    On Windows, I see that Air just makes use of the MSI database, so we're all set there. But on Mac, I don't know how to proceed.
    Thanks for your help.

    Looks like the ARH utility will do what I want, but I cannot find where to download it from, and what the license agreement is for using it. Here's where I found ARH discussed. Anyone know where I can get this from?
    http://help.adobe.com/en_US/air/redist/WS485a42d56cd19641-70d979a8124ef20a34b-8000.html

  • AIR for Android Captive Runtime

    Is it possible to package android apps with AIR (or will it be) using Flash CS5.5? I don't see anything on the web about. Just how to do it with Flex and ADT etc...

    Hi,
    I've made a complete working example for publishing an application with captive runtime, assets and native extensions starting from Flash CS5.5
    I was able to make it thanks to hints and suggestions I found in this thread.
    Note: english is not my native tongue so I hope you understand what I've written also if sometime it sounds "engrish".
    Here it is the link to the zip file:
        http://www.genereavventura.com/hosted/Air3NativeExtensions/AirVibrate.zip
    Requirements:
    - You must have Flash cs5.5 pro (obviously)
    - You must have installed the overlay for Air3.0 sdk on your Flash cs5.5 pro
    Here it is a link that explain how to accomplish it: http://forums.adobe.com/message/3939712
    Here the steps I made.
    1) Open Flash CS5.5 and create a new AIR for Android application
    2) Add the swc to the libraries used by your FLA (open Actionscript 3.0 settings and add "VibrationActionScriptLibrary.swc")
       Btw, you can find this "ready to use" native extension inside the zipfile that you can download from here: http://www.adobe.com/devnet/air/native-extensions-for-air/extensions/vibration.html
       However in my example you will find also a directory named "extension" that contains it.
    3) Open and then close the "air for android settings": by doing this Flash will create yourapp-app.xml file in the directory where your FLA resides.
       For example my fla is named "vibrate.fla" so Flash created for me a "vibrate-app.xml" file.
    4) Make a copy of this "vibrate-app.xml" file by naming it "real-vibrate-app.xml" (or choose whatever name you want)
       I've done this because after modyfing the original one by adding the <extension> tag (see below) I wasn't able to test my app from within Flash IDE (when I compile it it simply doesn't start)
       Instead by doing this all worked fine.
    5) Edit the "real-vibrate-app.xml" file by adding somewhere these lines (I added it just before the <initialWindow> tag)
        <extensions>
          <extensionID>com.adobe.Vibration</extensionID>
        </extensions>
    6) Add <uses-permission android:name="android.permission.VIBRATE"/> in the <android> <manifestAdditions> part in "real-vibrate-app.xml" file.
       You should do something like this:
       <android>
          <manifestAdditions>
            <![CDATA[<manifest>
              <uses-permission android:name="android.permission.VIBRATE"/>
            </manifest>]]>
          </manifestAdditions>
       </android>
    7) Develop your application
       I made a simple one that loads an external jpg and shows it on the stage: then the user can tap on it to make the phone vibrate.
       The function "doVibration" is called only when the app is running on Android Device so I do not get any executions error when I run the app from within Flash Ide
    8) Publish and test it to your USB connected device by launching the "publish.bat" file I have created
       Open a dos prompt and move to your project directory then type publish.bat and press enter.
       Note: it can be that you have to edit the bat file in order to change the path to the ADT tool that comes with Air3.0 sdk
       It should be in [your adobe flash cs5.5 directory]\AIR2.6\bin\adt (rememeber, you must have installed the Air3.0 sdk overlying the old Air2.6/2.7 in the AIR2.6 directory)
       Inside the bat file you can change easily the target type (captive or not) simply by commenting/decommenting the right line.
       Captive version is about 8Mb more than the normal one but the big deal is that the user that installs it do not need the air runtime installed on his phone!
       The "big line" that creates the package is the following one:
       call %ADT_LINK% -package -target %TARGET_TYPE% -storetype pkcs12 -keystore certificate/vibrate.p12 -storepass android AirVibrate.apk real-vibrate-app.xml -extdir extensions vibrate.swf icons assets
       where:
       call %ADT_LINK%          it's just the path to the ADT tool
       -package                 it's the command that we want ADT to execute
       -target %TARGET_TYPE%    captive/non captive version
       -storetype pkcs12        certificate related
       -keystore certificate/vibrate.p12  path to your self signed certificate
       -storepass android       certificate related, I created the example certificate with "android" password and this parameters tell ADT to always use it without prompting
       AirVibrate.apk           the name of the Apk
       real-vibrate-app.xml     the apk-xml to use that is the one we modified manually above
       -extdir extensions       it's the path to the directory that contains the native extension
       vibrate.swf              the main swf
       icons                    the icons directory
       assets                   the assets directory (where I put the external jpg)
    That's all.
    If everything is correct, the batch file creates the AirVibrate.apk then installs it on your attached usb device and run it.
    When you tap over the Android image that will appear, your phone should vibrate.
    Now.. does someone wants to develop a Native Extension to show Admob banners in our Android Air Applications?
    If I missed something, please let me know.
    Thanks

  • Can not install adobe air runtime on Windows XP x86

    Logs as follows:
    [2011-03-02:12:10:54] Runtime Installer begin with version 2.5.1.17730 on Windows XP x86
    [2011-03-02:12:10:54] Commandline is:
    [2011-03-02:12:10:54] No installed runtime detected
    [2011-03-02:12:10:59] Starting runtime install. Installing runtime version 2.5.1.17730
    [2011-03-02:12:10:59] Installing msi at c:\docume~1\admini~1\locals~1\temp\air57.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2011-03-02:12:10:59] Error occurred during msi install operation; beginning rollback: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1601" errorID=0]
    [2011-03-02:12:10:59] Rolling back install of c:\docume~1\admini~1\locals~1\temp\air57.tmp\setup.msi
    [2011-03-02:12:10:59] Rollback complete
    [2011-03-02:12:10:59] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="1601" errorID=0]
    [2011-03-02:12:11:07] Runtime Installer end with exit code 7
    Please help

    Hi,
    Sorry you're encountering this problem.  Unfortunately the error you're receiving is in another log that we'll need to enable.  However, we might be able to circumvent this using the Windows Installation Cleanup tool.  First, make sure that AIR is not available as an uninstall in your Add/Remove programs control panel, then follow the steps outlined in this post.
    If that does not help, we'll need to enable MSI logging so we can get a better idea on what's failing.
    How to enable Windows Installer logging
    Once MSI logging is enabled, please re-run the AIR Installer to generate the MSI Log (instructions for finding this log are also in the link above.)
    Thanks,
    Chris

  • Adobe AIR dist. Runtime not loading MyApp.air

    Hi
    I've got the License Agreement & have been sent the link to download the Air distribution files.
    My project is a CD ...
    OSX portion works ok ... Run Air dist app, installs Air if ness... then installs MyApp.air .
    WIN side of things, no luck .
    I've got .airinstall.cfg pointing to MyApp.air in a test folder with the Air Runtime distribution file .  Double click runtime & it says either "Adobe Air already installed" & then quits, MyApp.air not loaded ... or ... Installs Air runtime & then quits, MyApp.air not loaded (depending on if Air installed/not) .
    Theoretically all you need is 3 files in a directory : AdobeAIRInstaller.exe, .airinstall.cfg, MyApp.air & it should work, is this correct?
    Tried the side-car method (not sure what end difference is) & get message :
    "This application cannot be installed because this installer has been mis-configured. Please contact the application author for assistance."
    When double-click MyApp.air it works/installs fine .
    Am I missing something ?

    Turns out I hadn't been using an up-to-date installer ... dur

  • 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

  • RTMPS not working in Android Air 3.8.0.820

    If i build my app with 3.7.0.1530 then an RTMPS connection (proxyType = "best") works fine. If I build with 3.8.0.820, on Android I get a NetConnection.Connect.Failed after about 10 seconds. Works fine with 3.8 on iOS & OS X.
    Any ideas?

    Hi xtyler,
    Are they failing to connect first time, but working second time? Or are they completely unable to connect?
    If the latter I have some things that you can try, although I would have expected that these will only assist with Air 3.8 issues, which your customers probably aren't running yet.
    1. Use something like stunnel or Amazon ELB to handle the SSL, and have it forward the resulting non-SSL TCP connection to your RTMP port (not RTMPS)
    2. If your server is something other than Adobe Media Server and is a java program running on openjdk, try the steps listed here and restart your server. NOTE: This effects your SSL configuration. I can't comment on whether this lowers, raises or doesn't effect the resulting security.
    http://shickys.blogspot.com.au/2012/11/addressing-openjdk-bug-with-ssl-on.html
    These workarounds both allow Android Air 3.8.0.930 to establish an RTMPS connection to Red5.
    Dave

  • AIR Runtime on Android Emulator

    Greets,
    I've a problem with AIR Runtime on Android Emulator: after I installed the runtime apk  (everything goes fine) i try to install the helloworld.apk compiled with Flash CS5 + Andr ext.
    Well, i receive this message "INSTALLED FAILED INVALID APK"
    Anyone knows causes?

    >>Only one more question: can you explain me why everytime I compile i got this messsage back?
    >>"No libraries were linked as Runtime Shared Libraries (RSLs) because of your publish settings: AIR Android"
    Flash CS doesn't let you link Libraries as RSLs in Android. Probably you are using a standard library that, by default is linked as an RSL. The warning is just to let you know that the link setting is being overridden. (The Text Layout Framework is the most likely library.) If you aren't intentionally using RSLs, or don't even know what an RSL is, you can ignore the warning.

  • Seamless Install not working for installing Air runtime

    hi - is anyone else having this problem today? it was working perfectly for me yesterday but no joy today. The air.swf is still loading in correctly and works fine if you already have the Air runtime installed. But once it tries to install the runtime, you get "A download error occurred. Try to download again?" I've checked it on a couple of different air app sites and its not working anywhere. Anyone else experiencing this or have any suggestions about how to fix it? Thanks

    The issue is no longer happening. It continued for most of Wednesday but I haven't experienced the problem since then. Thanks for looking into it. Caitriona

  • Can't install air dmg on mavericks if air runtime is not installed : Error 2004 during the install

    Hello,
    I made a dmg with the flex 4.6 and i can't install it if adobe air is not installed.
    It works fine if adobe air is installed.
    I'm on mavericks.
    Have you ever seen that ?
    Best regards.
    Cyrille

    Could you please open a new bug report on this over at https://bugbase.adobe.com?  When adding the bug, please include your native installer so we can quickly test this out internally.  If you'd like to keep this private, feel free to email the attachment to me directly ([email protected]). 
    Once added, please post back with the URL and I'll follow up internally.
    Thanks,
    Chris

  • AIR runtime will not install

    I must be missing something simple....
    I cannot get the AIR runtime to install on a 17" G4 iMac,
    1ghz processor, 768 RAM. I click on the installer application and
    nothing happens.
    Has anyone else had this problem or can they shed some light
    on what might be going wrong?
    Thanks,
    Dan

    Hello, sorry to intervene in this thread, but couldn't figure
    out how to start a new one..!
    I'm running OS X 10.4.11. I've uninstalled all previous
    versions of AIR, searched the system for any files with the letters
    "AIR" in them and deleted anything that could have been related.
    emptied the trash. rebooted. downloaded the current version of AIR,
    and it still crashes.
    Crash log below. All help will be greatly appreciated!
    Daniel
    Host Name: G5
    Date/Time: 2008-07-04 09:01:17.080 -0400
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Adobe AIR Installer
    Path: /Volumes/Adobe AIR/Adobe AIR
    Installer.app/Contents/MacOS/Adobe AIR Installer
    Parent: WindowServer [62]
    Version: 1.0 (1.1.0.5790)
    PID: 271
    Thread: 0
    Exception: EXC_BAD_ACCESS (0x0001)
    Codes: KERN_PROTECTION_FAILURE (0x0002) at 0x00000000
    Thread 0 Crashed:
    0 libSystem.B.dylib 0x900031c8 strlen + 8
    1 com.apple.Foundation 0x92bdb0c8 +[NSString
    stringWithUTF8String:] + 36
    2 com.adobe.AIR 0x02a3bd34 dyld_stub_mach_absolute_time +
    37545364
    3 com.adobe.AIR 0x02a3ba3c dyld_stub_mach_absolute_time +
    37544604
    4 com.adobe.AIR 0x029737e4 dyld_stub_mach_absolute_time +
    36724804
    5 com.adobe.AIR 0x02973ca4 dyld_stub_mach_absolute_time +
    36726020
    6 com.adobe.air.Installer 0x00004058 RuntimeAppMain(char
    const*, int) + 180
    7 com.adobe.air.Installer 0x000043bc main + 72
    8 com.adobe.air.Installer 0x000026e0 _start + 760
    9 com.adobe.air.Installer 0x000023e4 start + 48
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x00000000900031c8 srr1: 0x100000000000f030 vrsave:
    0x0000000000000000
    cr: 0x24000462 xer: 0x0000000000000000 lr:
    0x0000000092bdb0c8 ctr: 0x00000000900031c0
    r0: 0x0000000092bdb0c8 r1: 0x00000000bffff660 r2:
    0x0000000000311784 r3: 0x0000000000000000
    r4: 0x0000000090ab8df0 r5: 0x0000000000000000 r6:
    0x0000000000000002 r7: 0xffffffffffffffff
    r8: 0x0000000000000004 r9: 0x0000000000000000 r10:
    0x0000000000000000 r11: 0x00000000a2bcf684
    r12: 0x00000000900031c0 r13: 0x0000000000000000 r14:
    0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18:
    0x0000000000000000 r19: 0x0000000000000000
    r20: 0x000000000341bbf4 r21: 0x000000000031fa90 r22:
    0x000000000341bbf4 r23: 0x0000000000318e10
    r24: 0x000000000030e420 r25: 0x000000000000000f r26:
    0x00000000bffff704 r27: 0x000000000334bbf4
    r28: 0x0000000000000000 r29: 0x00000000a2bf3e4c r30:
    0x0000000000000000 r31: 0x0000000092bdb0a4
    Binary Images Description:
    0x1000 - 0x7fff com.adobe.air.Installer 1.0 (1.1.0.5790)
    /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR
    Installer
    0x296b000 - 0x3295fff com.adobe.AIR 1.0 (1.1.0.5790)
    /Volumes/Adobe AIR/Adobe AIR
    Installer.app/Contents/Frameworks/Adobe
    AIR.framework/Versions/1.0/Adobe AIR
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib
    /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib
    /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.78 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11
    (368.35)
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib
    /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib
    /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5cfff IOKit
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b72000 - 0x90b84fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8b000 - 0x90e62fff com.apple.CoreServices.CarbonCore
    681.17
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x90ec8000 - 0x90f48fff com.apple.CoreServices.OSServices 4.1
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x90f92000 - 0x90fd4fff com.apple.CFNetwork 129.22 (129.23)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x90fe9000 - 0x91001fff com.apple.WebServices 1.1.2 (1.1.0)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.f ramework/Versions/A/WebServicesCore
    0x91011000 - 0x91092fff com.apple.SearchKit 1.0.7
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x910d8000 - 0x91101fff com.apple.Metadata 10.4.4 (121.36)
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x91112000 - 0x91120fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91123000 - 0x912defff com.apple.security 4.6 (29770)
    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dd000 - 0x913e6fff com.apple.DiskArbitration 2.1.2
    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ed000 - 0x913f5fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f9000 - 0x91421fff com.apple.SystemConfiguration 1.8.3
    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x91434000 - 0x9143ffff libgcc_s.1.dylib
    /usr/lib/libgcc_s.1.dylib
    0x91444000 - 0x914bffff com.apple.audio.CoreAudio 3.0.5
    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fc000 - 0x914fcfff com.apple.ApplicationServices 10.4
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x914fe000 - 0x91536fff com.apple.AE 1.5 (297)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framewo rk/Versions/A/AE
    0x91551000 - 0x91623fff com.apple.ColorSync 4.4.10
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x91676000 - 0x91707fff com.apple.print.framework.PrintCore
    4.6 (177.13)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x9174e000 - 0x91805fff com.apple.QD 3.10.25 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x91842000 - 0x918a0fff com.apple.HIServices 1.5.3 (???)
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x918cf000 - 0x918f0fff com.apple.LangAnalysis 1.6.1
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x91904000 - 0x91929fff com.apple.FindByContent 1.5
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByCont ent.framework/Versions/A/FindByContent
    0x9193c000 - 0x9197efff com.apple.LaunchServices 182
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServ ices.framework/Versions/A/LaunchServices
    0x9199a000 - 0x919aefff com.apple.speech.synthesis.framework
    3.3
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x919bc000 - 0x91a02fff com.apple.ImageIO.framework 1.5.7
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x91a19000 - 0x91ae0fff libcrypto.0.9.7.dylib
    /usr/lib/libcrypto.0.9.7.dylib
    0x91b2e000 - 0x91b43fff libcups.2.dylib
    /usr/lib/libcups.2.dylib
    0x91b48000 - 0x91b66fff libJPEG.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x91b6c000 - 0x91c23fff libJP2.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJP2.dylib
    0x91c72000 - 0x91c76fff libGIF.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x91c78000 - 0x91ce2fff libRaw.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRaw.dylib
    0x91ce7000 - 0x91d24fff libTIFF.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x91d2b000 - 0x91d45fff libPng.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x91d4a000 - 0x91d4dfff libRadiance.dylib
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x91d4f000 - 0x91e3dfff libxml2.2.dylib
    /usr/lib/libxml2.2.dylib
    0x91e5c000 - 0x91e5cfff com.apple.Accelerate 1.2.2
    (Accelerate 1.2.2)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e5e000 - 0x91f43fff com.apple.vImage 2.4
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x91f4b000 - 0x91f6afff com.apple.Accelerate.vecLib 3.2.2
    (vecLib 3.2.2)
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x91fd6000 - 0x92044fff libvMisc.dylib
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x9204f000 - 0x920e4fff libvDSP.dylib

Maybe you are looking for

  • Fields in customer master ?

    hai. how to make some fields in the customer master to appear in the grey mode  and not in change mode to the user in the change customer master data screen (XD02) kindly update ? regards sriram.

  • My iPhone 3GS no longer opens iTunes when connected.

    My iPhone 3GS no longer opens iTunes when connected. Not since recent big update. It is ticked to open on connection. Any pointers to a solution. TIA Ritch

  • Mailto links not working in Firefox 28 for default Thunderbird 24.4 on Win7

    This should be simple, right? I have a registered version of Win 7 Home Premium 64-bit completely updated with Firefox 28.0 and Thunderbird 24.4 as defaults. Within Firefox, I have confirmed that Firefox is the default browser. Within Thunderbird, I

  • Sorting a doubly linked list

    Hello people! I have problems with sorting a doubly linked list, I have kind of got stuck just looking at the code and don't really know what I'm doing anymore... public void sortList() int flag = 0; DoubleNode temp; //Doubly Linked List Node temp =

  • Camera Rw 8.7

    Is there a camera raw plug in available for Photoshop E;laments 13 for the new Canon 7D Mark ll