Export for android

Hello!
I would like to know why if I export an app for iphone, the device doens't need to install air to run it and in Android, I need to install adobe air before use the app.
Iphone come with air? What is the different???
In the case of Android I tryed it in a tablet and not in a mobile.
Thanks!!!

your iphone app is packaged with the air runtime.  check its file size.
when you publish for android (with some cs versions), you have a choice of whether to embed the runtime (user won't need to install air but the file size will be large just like your iphone app) or not (small file size but user will need to have the air runtime installed or will be prompted to download and install it).

Similar Messages

  • Audio export for android

    I have a music and voice track. No matter what i do I can not get the voice track to play. Ive tried every format possible. Mono. Premixed the track to MP3 and Wave and reimported and exported. The phone ONLY plays back the music track. Stange and odd

    Let's be clear:
    1) There is "acceptable" latency of the order of half a sec or so ( often less ), which according to the post by Holgate, #7 above, is an issue with -- some versions of ( ? ) -- Android ( not Air specifically ).
    2) Then, there is unacceptable delay, which appears to be specific to Air on some Android devices ( particularly Nook Color and Kindle Fire ), where a sound will sometimes play in near sync ( with "normal" Android latency ), and sometimes with a delay of SEVERAL SECONDS ( like 5 or 10, in one of my apps! ), which apparently has something to do with garbage collection ( Holgate post #14, above ).
    I can confirm that the unacceptable delay has NOT been fixed as of Air 3.6, testing on Nook Color and Kindle Fire, though it is fine ( no delay ) on the Nexus One.
    As pointed out in another forum, playing all your sounds in a silent loop, will prevent sounds from being garbage collected, and will eliminate the delay issue whenever you play a sound, like so:
    private function initSounds():void
         var silentSndXF:SoundTransform = new SoundTransform( 0 );
         _sound01.play( 0, int.MAX_VALUE, silentSndXF );
         _sound02.play( 0, int.MAX_VALUE, silentSndXF );
         _sound03.play( 0, int.MAX_VALUE, silentSndXF );
         // Note: int.MAX_VALUE is about 2 billion, so even a very short "click" sound of 1/20
         // of a sec would play for 3 years or so -- if the app was never closed !!
    private function onButtonClick( evt:MouseEvent ):void
         _sound01.play();
    This hack eliminated the severe delay I was getting on Nook Color and Kindle Fire ( several seconds for some sounds, in some situations ), leaving me with the "regular", acceptable Android latency.

  • Adobe AIR for Android - GPU Mode - Bitmap Auto-Smoothing Issue

    Hi everyone
    I'm having a bit of an issue with the AS3 bitmap object. I'm currently developing an 8-bit style pixel game for AIR for Android.
    This game is being developed at a very low resolution and is being scaled up to maintain the charm of an old retro game.
    One of the methods I'm using is drawing pixels directly to bitmap objects and scaling the object up to create the old look.
    When testing on a mobile device, this works beautifully when you set the rendering method to Direct but when you change
    the render method to GPU the visuals go all blurry and anti-aliased (it's as if the bitmap is being smoothed out). The mini map
    for example is rendered using the setPixel method and then scaled up 9 times. Looks great on my PC but once I export it to my phone
    it looks absolutely awful! This is no good as I want to keep the clean, solid pixel look to maintain the the old 8-bit feel and obviously
    I'd like to stick to GPU mode due to it's speed.
    Like I said, this only happens once you test on a mobile device in GPU mode - it doesn't do it on my main desktop machine or
    in Direct mode. I already have the stage quality set to low and I've tried setting the bitmap's smoothing property to false but
    it does nothing.
    Does anyone have any suggestions as to how I can get around this?

    How about first blit your image to a small bitmapData, then draw it on a large bitmapData (9X larger)?
    Like,
    var small_bmd:BitmapData = new BitmapData(SMALL_WIDTH, SMALL_HEIGHT, false);
    var large_bmd:BitmapData = new BitmapData(SMALL_WIDTH * 9, SMALL_HEIGHT * 9, false);
    var bm:Bitmap = new Bitmap(large_bmd, PixelSnapping.NEVER, false);
    var blitRect:Rectangle = new Rectangle(0, 0, 9, 9);
    var i:uint, j:uint, blitColor:uint;
    small_bmd.draw(SOURCE_IMAGE);
    large_bmd.lock();
    for(j = 0; j < SMALL_HEIGHT; j++){
         for(i = 0; i < SMALL_WIDTH; i++){
              blitColor = small_bmd.getPixel(i, j);
              blitRect.x = i * 9;
              blitRect.y = j * 9;
              large_bmd.fillRect(blitRect, blitColor);
    large_bmd.unlock();
    Not sure if the code works or not, but hopefully this helps.

  • 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

  • How to divide and load parts of Large Adobe AIR app for Android

    Hi!
    I want to create an app for Android but it will quite large. It will be larger than the 50MB offered by Google Play Store. This means that I need to find a way and break the app and load parts of it when I need them. Imagine it like minigames inside a bigger app.
    It is not clear to me how to achieve this since every time on AIR, I can export and APK file for a mini-game let's say. Can I later download APKs and integrate them into my main app? How would this be possible? Another question that I have is: In order for a SWF to play on my app, it needs to be built by AIR for Android?
    The best case would be to download content from In-App purchases and integrate in my app.
    But these things are not so clear.
    Thanks in advance for your help and support.

    I don't know how your application is structured, but if you can split sections off into separate SWFs(plain AS3 document) then you could host those section SWFs online and require the user to download them on first run.
    You could use the FileReference object to download the SWFs, save them to the File.applicationStorageDirectory, and then display/load them up with the Loader object when needed from the app storage directory. You would possibly need to check to see if the files are present at every boot of the app though as a user could "Clear Data" or "Clear Cache" of the app in the Settings of their device and one or both of those could/would delete the downloaded files.
    FileReference - Adobe ActionScript® 3 (AS3 ) API Reference

  • Firefox for Android v34 and v35 are crashing immediately on second opening in Samsung KNOX 2.0 and above.

    Within a proof of concept situation we figured out that only freshly installed Firefox versions (v34 and v35) are running fine in a Samsung KNOX container. We are running Android 4.4.2 with KNOX 2.1 on a Samsung S5 device. We are using MobileIron 7.5 for provisioning the devices and configuring the container.
    The behavior is as follows:
    1. Open KNOX container
    2. Open Firefox within the container
    3. Everything works fine without any problems (expected behavior). Intranet and Internet sites can be opened without any limitations.
    4. Close Firefox completely (by multitasking screen)
    5. Open Firefox again
    6. Firefox crashes without any error message
    After setting Firefox to factory settings by deleting all app data (with "System Info for Android" App because the "original" app setting is not available within the container) Firefox behaves like described under 3.
    Unfortunately I do only have adb logs because the original Firefox logs can't be exported via USB out of the KNOX container as far as I know. If you have any ideas I would be really thankful for any advice. "about:crashes" can't be used as well because Firefox can't be opened after the first crash and has to be reset (including deleting all logs) by setting it to default.
    Outside the KNOX container Firefox works well.
    It seems that all KNOX 2.0 and above versions show the same behavior with Firefox which means that Firefox can't be used in a KNOX 2.x container.
    We already opened a case at Samsung as well.

    ...this is the rest of the log
    E/dalvikvm(17631): >>>>> org.mozilla.firefox [ userId:100 | appId:10240 ]
    E/SELinux (17631): [DEBUG] selinux_android_knoxproc_setcontext: calling setcon(u:r:container_app:s0:c2) for org.mozilla.firefox
    D/dalvikvm(17631): Trying to load lib /data/app-lib/org.mozilla.firefox-2/libmozglue.so 0x425b42a8
    D/dalvikvm(17631): Added shared lib /data/app-lib/org.mozilla.firefox-2/libmozglue.so 0x425b42a8
    D/dalvikvm(17631): No JNI_OnLoad found in /data/app-lib/org.mozilla.firefox-2/libmozglue.so 0x425b42a8, skipping init
    I/GeckoLogger(17631): firefox :: GeckoProfileInfo :: Restoring ProfileInformationCache from file.
    I/GeckoLogger(17631): firefox :: HealthReportStorage :: Initializing measurement org.mozilla.appSessions to 4 (current 4)
    I/GeckoLogger(17631): firefox :: HealthReportStorage :: Measurement org.mozilla.appSessions already at v4
    I/GeckoLogger(17631): firefox :: HealthReportStorage :: Initializing measurement org.mozilla.searches.counts to 5 (current 5)
    I/GeckoLogger(17631): firefox :: HealthReportStorage :: Measurement org.mozilla.searches.counts already at v5
    D/dalvikvm(17631): Trying to load lib /data/app-lib/org.mozilla.firefox-2/libmozglue.so 0x425b42a8
    D/dalvikvm(17631): Shared lib '/data/app-lib/org.mozilla.firefox-2/libmozglue.so' already loaded in same CL 0x425b42a8
    W/GeckoLinker(17631): /data/app/org.mozilla.firefox-2.apk!/assets/libnss3.so: unhandled flags #8 not handled
    I/GeckoHealth(17631): firefox :: HealthReportBroadcastService :: Registering HealthReportUploadService.
    I/GeckoHealth(17631): firefox :: BackgroundService :: Setting inexact repeating alarm for interval 3600000
    W/GeckoLinker(17631): /data/app/org.mozilla.firefox-2.apk!/assets/libxul.so: unhandled flags #8 not handled
    W/GeckoLinker(17631): /data/app/org.mozilla.firefox-2.apk!/assets/libmozalloc.so: unhandled flags #8 not handled
    W/GeckoLinker(17631): /data/app/org.mozilla.firefox-2.apk!/assets/libxul.so: Relocation to NULL @0x017d30fc
    W/GeckoLinker(17631): /data/app/org.mozilla.firefox-2.apk!/assets/libxul.so: Relocation to NULL @0x017d41c4 for symbol "__cxa_begin_cleanup"
    W/GeckoLinker(17631): /data/app/org.mozilla.firefox-2.apk!/assets/libxul.so: Relocation to NULL @0x017d41c8 for symbol "__cxa_type_match"
    E/GeckoConsole(17631): Could not read chrome manifest 'file:///data/user/100/org.mozilla.firefox/chrome.manifest'.
    I/ActivityManager( 1895): Process org.mozilla.firefox (pid 17631) (adj 1) has died.
    I/WindowState( 1895): WIN DEATH: Window{4326a358 u100 org.mozilla.firefox/org.mozilla.firefox.App}
    W/WindowManager( 1895): mAttachedWindow=Window{4326a358 u100 org.mozilla.firefox/org.mozilla.firefox.App EXITING} mLayoutAttached=true
    W/WindowManager( 1895): mRootToken=AppWindowToken{438217a0 token=Token{435027b8 ActivityRecord{43a50c18 u100 org.mozilla.firefox/.App t43}}}
    W/WindowManager( 1895): mAppToken=AppWindowToken{438217a0 token=Token{435027b8 ActivityRecord{43a50c18 u100 org.mozilla.firefox/.App t43}}}
    W/WindowManager( 1895): This window was lost: Window{4326a358 u100 org.mozilla.firefox/org.mozilla.firefox.App EXITING}
    W/WindowManager( 1895): mOwnerUid=10010240 mShowToOwnerOnly=true package=org.mozilla.firefox appop=NONE
    W/WindowManager( 1895): mToken=AppWindowToken{438217a0 token=Token{435027b8 ActivityRecord{43a50c18 u100 org.mozilla.firefox/.App t43}}}
    W/WindowManager( 1895): mRootToken=AppWindowToken{438217a0 token=Token{435027b8 ActivityRecord{43a50c18 u100 org.mozilla.firefox/.App t43}}}
    W/WindowManager( 1895): mAppToken=AppWindowToken{438217a0 token=Token{435027b8 ActivityRecord{43a50c18 u100 org.mozilla.firefox/.App t43}}}
    W/WindowManager( 1895): WindowStateAnimator{4353c578 org.mozilla.firefox/org.mozilla.firefox.App}:
    W/WindowManager( 1895): mSurface=Surface(name=org.mozilla.firefox/org.mozilla.firefox.App)
    V/WindowManager( 1895): #5: Token{44006cb0 ActivityRecord{4408ca88 u0 org.mozilla.firefox/.App t3}}
    V/WindowManager( 1895): #5: Window{43f31b18 u0 org.mozilla.firefox/org.mozilla.firefox.App}
    E/dalvikvm(17717): >>>>> org.mozilla.firefox [ userId:100 | appId:10240 ]
    E/SELinux (17717): [DEBUG] selinux_android_knoxproc_setcontext: calling setcon(u:r:container_app:s0:c2) for org.mozilla.firefox
    D/dalvikvm(17717): Trying to load lib /data/app-lib/org.mozilla.firefox-2/libmozglue.so 0x425a7fb8
    D/dalvikvm(17717): Added shared lib /data/app-lib/org.mozilla.firefox-2/libmozglue.so 0x425a7fb8
    D/dalvikvm(17717): No JNI_OnLoad found in /data/app-lib/org.mozilla.firefox-2/libmozglue.so 0x425a7fb8, skipping init
    V/ApplicationPolicy( 1895): isApplicationStateBlocked userId 100 pkgname org.mozilla.firefox
    I/GeckoLogger(17717): firefox :: GeckoProfileInfo :: Restoring ProfileInformationCache from file.
    I/GeckoLogger(17717): firefox :: HealthReportStorage :: Initializing measurement org.mozilla.appSessions to 4 (current 4)
    I/GeckoLogger(17717): firefox :: HealthReportStorage :: Measurement org.mozilla.appSessions already at v4
    I/GeckoLogger(17717): firefox :: HealthReportStorage :: Initializing measurement org.mozilla.searches.counts to 5 (current 5)
    I/GeckoLogger(17717): firefox :: HealthReportStorage :: Measurement org.mozilla.searches.counts already at v5
    D/dalvikvm(17717): Trying to load lib /data/app-lib/org.mozilla.firefox-2/libmozglue.so 0x425a7fb8
    D/dalvikvm(17717): Shared lib '/data/app-lib/org.mozilla.firefox-2/libmozglue.so' already loaded in same CL 0x425a7fb8
    W/GeckoLinker(17717): /data/app/org.mozilla.firefox-2.apk!/assets/libnss3.so: unhandled flags #8 not handled
    I/GeckoHealth(17717): firefox :: HealthReportBroadcastService :: Registering HealthReportUploadService.
    I/GeckoHealth(17717): firefox :: BackgroundService :: Setting inexact repeating alarm for interval 3600000
    W/GeckoLinker(17717): /data/app/org.mozilla.firefox-2.apk!/assets/libxul.so: unhandled flags #8 not handled
    W/GeckoLinker(17717): /data/app/org.mozilla.firefox-2.apk!/assets/libmozalloc.so: unhandled flags #8 not handled
    W/GeckoLinker(17717): /data/app/org.mozilla.firefox-2.apk!/assets/libxul.so: Relocation to NULL @0x017d30fc
    W/GeckoLinker(17717): /data/app/org.mozilla.firefox-2.apk!/assets/libxul.so: Relocation to NULL @0x017d41c4 for symbol "__cxa_begin_cleanup"
    W/GeckoLinker(17717): /data/app/org.mozilla.firefox-2.apk!/assets/libxul.so: Relocation to NULL @0x017d41c8 for symbol "__cxa_type_match"
    E/GeckoConsole(17717): Could not read chrome manifest 'file:///data/user/100/org.mozilla.firefox/chrome.manifest'.
    I/ActivityManager( 1895): Process org.mozilla.firefox (pid 17717) (adj 1) has died.
    I/WindowState( 1895): WIN DEATH: Window{432b3450 u100 org.mozilla.firefox/org.mozilla.firefox.App}

  • Air for Android Extremely Slow...

    Hey everybody,
    Hopefully some of you have been trying the prerelease of Air for Android like myself. Its all great and easy peasy to export the apps to my phone but it seems to be ridiculously slow even for seemingly simple scripts.
    This is what i'm trying to run at the moment and the app times out before it gets running (All the apps do get running eventually but only after the time out timer could have run over multiple times).
    import flash.display.Shape;
    import flash.events.Event;
    import flash.sensors.Accelerometer;
    import flash.events.AccelerometerEvent;
    var vx:Number = 0;
    var vy:Number = 0;
    var s:Shape = new Shape;
    s.x = stage.stageWidth/2;
    s.y = stage.stageHeight/2;
    with (s.graphics)
        lineStyle(3,0);
        drawCircle(0,0,5);
    addChild(s);
    var accel:Accelerometer = new Accelerometer();
    addEventListener(Event.ENTER_FRAME, onFrameLoop);
    accel.addEventListener(AccelerometerEvent.UPDATE, onAccelEvent);
    function onAccelEvent (evt:AccelerometerEvent):void
        vx += evt.accelerationX;
        vy += evt.accelerationY;
    function onFrameLoop (evt:Event):void
        s.x = Math.round(s.x + vx);
        s.y = Math.round(s.y + vy);
    From what I can see theres nothing actually wrong with the code from what I can see but it just takes so frickin' long to load. If I make an app with some equally simple animations it loads almost instantly. I am aware that this is only a prerelease version of the software and the documentation does say that hardware acceleration has not been added yet but whenever I watch the videos up on youtube of the Adobe team making amazing apps with obviously buckets of script running smoothly on their phone I get annoyed
    P.S The processor on my phone isn't the problem either (Nexus One Eclair )

    If you are deploying for iPhone it is on the 'general' settings(First setting page opened).
    Just noticed you are making android app but i still added iphone deployment settings for further future
    But if you are using it for flash/android you have to add code into your fla descriptor with XML language(dont worry it is 1 line of code)
    Watch the video on this page about GPU rendering:
    http://blogs.adobe.com/cantrell/archives/2010/10/gpu-rendering-in-adobe-air-for-android.ht ml
    Your app shouldn't lag after these steps but if you have a project that gets bigger and has lots of code it MIGHT lag so that is when external files should help.

  • How can I backup/save my Firefox for Android bookmarks?

    I would like to be able to save/export/backup my Firefox for Android bookmarks to a file on my Samsung Tab 2 tablet for safety.
    How can this be done or CAN it even be done.
    Thanks

    They cannot be backed up to a file. You can use Firefox Sync, https://support.mozilla.org/en-US/kb/how-do-i-set-up-firefox-sync

  • Air for Android language problem

    i have an Air for Android APK compiled by Flash CS5.5 that shows support for languages that are not in the app. I successfully removed these in my iOS apps, but am unable to find out how to do this for Android apps. Anyone developed a process to fix this?

    I'm still having this issue with every export. This seems to be a problem that just won't die.
    Edit: This might be the answer
    http://forums.adobe.com/message/4329360#4329360

  • The Humble Bundle for Android 3

    Since there is no thread for the Humble Bundle for Android 3 yet and currently it is being discussed off-topically in another thread, I’m making one .
    Here is the information known so far:
    Fieldrunners
    Requires freeglut if you’re running Arch 32 bit, and lib32-freeglut from the AUR under 64 bit. (thanks fbt)
    The sound gets cut all the time under ALSA and you must kill pulseaudio first (or use padsp). (thanks fbt/whoops)
    Otherwise seems to work fine.
    Spacechem
    whoops wrote:is a windows binary + a wine'ish blob (that just freezes on my machine), comes only as rpm/deb and seems to insist to be installed in /opt (AND some files in /usr/share). The included .exe doesn't work with native wine either (without further adjustments at least).
    Uplink
    whoops wrote:seems to be unplayable on a big resolution Display without workarounds due to its small font...?
    Spirits
    whoops wrote:
    says:
    (Spirits-64:14143): Gtk-WARNING **: Error loading theme icon 'image-missing' for stock: Fatal error reading PNG image file: Incompatible libpng version in application and library
    ... but seems to work fine at a first glance (safe for a missing picture in the launcher which isn't really tragic).

    http://aur.archlinux.org/packages/lo/lo … r/PKGBUILD
    here is the lonesurvivor pkgbuild that I just fixed to take _humbleemail and _humblepassword this can be used to download from the accounts page since they will all be on that page
    heh, this bit is almost the exact same for the bastion pkgbuild
    the first source item should be the name of the tarball or self extracting thing, and after the :: is https://www.humblebundle.com/login
    so the name of the file will be %o and the url with be %u
    make sure the %o includes the architecture if both 64 and 32 are available,
    the case statement makes it easy to assign a _arch and you can include the
    in the %o if you need to
    source=("Bastion-HIB-${_pkgver}.sh::https://www.humblebundle.com/login"
            "Bastion-HIB-${_pkgver}.sh::http://www.humblebundle.com/downloads?key=${_humblebundleVkey}"
            "$pkgname.desktop"
            "mesa$pkgname"
            "$pkgname.install")
    case $CARCH in
        i686) _arch=x86 ;;
        x86_64) _arch=x86_64;;
    esac
    _char=\'
    #we now echo the name of the file into /tmp/arch and remove the .part from it
    #then we grap a cookie from the file
    #and then authenticate with our $_humbleemail and $_humblepassword
    #now we have the html stuff from the website, we grep for the %o from /tmp/arch
    #and then we find the dataweb link and put it in /tmp/url
    #this line requires the $_char from above because escaping a ' inside the 's for the whole DLAGENT is a pain
    #now, just use the authenticated cookie and download the file pointed to by /tmp/url
    #and last clean up everything
    #the http: makes it so that you can download from the http link if the account is not bound to
    #_humbleemail
    DLAGENTS=('https::/bin/echo %o > /tmp/arch && sed -i "s/.part//" /tmp/arch &&
    /usr/bin/curl -s --cookie-jar /tmp/cjar --output /dev/null %u && cp /tmp/cjar ./ &&
    /usr/bin/curl -sL --cookie /tmp/cjar --cookie-jar /tmp/cjar --data "username=$_humbleemail" --data "password=$_humblepassword" %u |
    grep -f /tmp/arch |grep -o -E "data-web=[^ ]+"| sed -e "s/data-web=\([^ ]*\)/\1/" > /tmp/url &&
    sed -i "s/$_char//g" /tmp/url &&
    /usr/bin/curl --cookie /tmp/cjar --cookie-jar /tmp/cjar -fLC -  --retry 3 --retry-delay 3 -o %o "$(</tmp/url)" &&
    rm -f /tmp/{arch,url} | return 0'
                "http::/usr/bin/curl -sL %u | grep Bastion-HIB | sed -e \"s/.*data-web='\([^']*\)'.*/url = \1/\" > /tmp/url && /usr/bin/curl -fLC -  --retry 3 --retry-delay 3 -o %o -K /tmp/url && rm /tmp/url")
    #this message is why having the file from the website first in source is important
    #it checks $SRCDEST, never use $startdir, sometimes that is the same as SRCDEST and sometimes it isn't
    #if the files exists everything is skipped, otherwise the user is informed to either export _humbleemail and password
    #it also checks for the old humblebundleVkey from the hib5 sale
    if [[ ! -f $SRCDEST/${source[0]%%:*} ]]; then
        if [[ -z $_humbleemail || -z $_humblepassword ]]; then
            if [[ -z $_humblebundleVkey ]]; then
                msg "if you have bound your email and password to your account, "
                msg "please export the values _humbleemail and _humblepassword so"
                msg "that you can be logged in to download the game."
                echo
                msg "if you have not bound the key to an email, "
                msg "please export _humblebundleVkey in your .bashrc"
                return 1
            fi
        fi
    fi
    Last edited by gtmanfred (2012-08-27 02:27:01)

  • Sound runs wild with AIR 2.7.1 for Android

    My AIR for Android apps worked just fine with AIR 2.7 runtime on a samsung galaxy.
    The app uses sounds on timelines.
    After 2.7.1 the apps still work fine when compiled in the Flash Pro CS5.5 IDE, and still work fine if exported to iOS.
    But on Android-devices after a short while all the sounds in a displayed movieclip are played over and over...
    I didn't know that sound relevant issues were changed from 2.7 to 2.7.1.1961.
    Anybody has similar problems?

    Exactly. And this is really bad for apps already in the Android Market - if users update to 2.7.1 suddenly the formerly perfectly functioning apps have this problems.
    I tested this on the Samsung Galaxy Tab GT-P1000.
    On which device/s did you encounter this problem?
    And do you have a small example or testcase you can e.g. upload to the adobe bug-database?
    Our project is kind of big (the iOS part works perfect, thank you Adobe, great tool!) and I don't have the time right now to code a testcase - but if you don't have this maybe I can do it beginning of september...
    This bug must be resolved, think of all the poor support people which will have to answer questions like "My android app behaves kind of strange...".
    And my CEO is already dis-app-ointed (sorry for that, I'm a German trying to make a pun, yes) that I now can't upload our apps to the Android Market.

  • AIR for Android app location

    I am developing an AIR for Android app. When the app is published, does anyone know where on the phone the app is stored? It would be on the internal memory as the app is never moved to the sd card.
    I need to know this as the app exports a pdf file. I am using File.applicationStorageDirectory so the pdf should save in the app directory but I cant find it.
    Would the app be stored in the same directory for iOS as well?
    Thanks
    UPDATE: 18/01/12
    I have found the app location and which can be accessed with a rooted phoned.
    I also have the pdf saving in the /Local Store/ directory of the app. However, is it possible to save the pdf in the sdcard directory? I have tried a relative path (../../../../../../sdcard) but that didnt work.

    Hi guys, any ideas?

  • Integrate Adobe Air in app for Android

    Hello!Please, answer to one my question.
    Can I integrate Adobe Air in my app for Android? I want the user to not download Adobe Air from Google Play.
    Thanks.

    I've never used anything other than Flash Builder for mobile... So, yes, cf my original answer!
    When you select Export Release Build, it is on the first page of options. (I think ... This is from memory.) In any case, it is very visible. Just look at all the Android options when you package for release.
    G

  • Hi Team, I wuold like to know if you have any app to make Firefox OS working with cisco Call Manager 10.5. Something like Cisco Jabber for Android or iOS.

    I'm interesting on buying a Firefox Smart Phone, but
    I would like to know if are any app to install on Firefox OS smart phone in order to work with cisco call manager 10.5.
    Something like Cisco Jabber for Android o iOS.
    Thanks,

    Hi Itech,
    If Cisco Jabber has a webapp, or mobile version of their website available, you should technically be able to access it through Firefox OS.
    You may also search Firefox Marketplace for an alternative solution:
    * [https://marketplace.firefox.com/]
    - Ralph

  • Adobe Creative Cloud app for Android (preview) compatibility?

    HI - I notice that Adobe have released an Adobe Creative Cloud (preview) app for Android. This is very welcome as it would allow me to share files across Windows desktop, Android tablet and, if necessary, iPad.
    But it says it isn't compatible with my Hudl2 - why?
    Could it be because my tablet is wifi only? (I hope not.)
    RIchard

    I now have a Samsung Galaxy Note 4 and the Android app is not compatible with that device either - why?

Maybe you are looking for

  • Why does is the Content tab in Preferences missing?

    When I try to view the Content tab in Preferences, it shows the last tab I clicked on. For example, when I click on Tabs and then try to view the Content tab, it shows the Tabs tab.

  • Accessing value of a textfield mapped to an infobus column

    I am attempting to access the text value of a textfield mapped to an Infobus column. In this instance, I am trying to get an account type from the appropriate textfield to pass it to a new query. I have tried using getText - this returns a string of

  • Adding body of email when invoice sent as an PDF attachment

    Hi All, How to add standard text (constant for all invoices) to the body of the invoice email sent to the customer? I added text in the 'Mail title and text' section of transation NACE, but it is not working. I'm using 'External medium' in the output

  • SAP Query Manager Parameter selection problem

    Experts, Declare @Fromdate datetime Declare @ToDate datetime set @Fromdate =(select MIN(T0.docdate) from OPCH T0 where T0.DocDate >='[%0]') set @Todate =(select Max(T0.docdate) from OPCH T0 where T0.DocDate <='[%1]') select ROW_NUMBER()  OVER (ORDER

  • External source file

    Hi i have an external source code file. How can i use this external file in another source file? Thanks for help.