Device deployment requires AIR SDK 3.4 or higher

I just installed FB 4.7 (OS X 10.7.5) and followed the instructions "toupdate the AIR SDK" (skip step 2) and installed the AIR SDK 3.5.0.890.

I then create my configuration (targeting Apple iOS) run with the "install the application on the USB device" checked I get: -.

Device deployment requires AIR SDK 3.4 or higher

How can I fix it?

NOTE: there is a link "more" (http://http :// www.adobe.com/go/fb_ios_launch_sdkhelp) on the config panel, but he broke

It seems you must also update the Flex SDK with the AIR skd updates to make it work.

Tags: Flash Builder

Similar Questions

  • File.upload ActionScript does not work on Air SDK for iOS devices

    I try to use the ActionScript File.upload to transfer a file on Air SDK for iOS environment, but the File.upload does not work properly. No event on the file upload handler is executed after File.upload is called, and no exception is caught. When I check the side network traffic server, I found no application http even didn't hit the server after execution of File.upload. The code is below.

    ------------------------------------------------------------------------------------------ -----------------------------------------------------------------------

    <? XML version = "1.0" encoding = "utf-8"? >

    " < = xmlns:fx s:View ' http://ns.Adobe.com/MXML/2009 "xmlns:s ="library://ns.adobe.com/flex/spark"title ="HomeView"> "

    < fx:Declarations >

    <! - Place non-visual elements (e.g., services, items of value) here - >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    private var file:File;

    private var dir:File;

    This method is executed to create a file and download it when you press the download button.

    protected void OnUploadButtonPressed(event: MouseEvent): void {}

    trace ("upload button clicked");

    var urlReq:URLRequest = new URLRequest ("http://10.60.99.31/MyPath/fileUploadTest.do");

    urlReq.method = URLRequestMethod.POST;

    var str:String = "this is test";

    var imageBytes:ByteArray = new ByteArray();

    for (var i: int = 0; i < str.length; i ++) {}

    imageBytes.writeByte (str.charCodeAt (i));

    }

    trace ("size =" + imageBytes.length);

    try {}

    dir = File.applicationStorageDirectory

    I also tested in several different directories

    dir = File.createTempDirectory ();

    dir = File.documentsDirectory;

    var today: Date = new Date();

    var filename:String = 'IMG' + now.fullYear + now.month + now.day + now.hours + now.minutes + now.seconds + now.milliseconds + ".txt";

    file = dir.resolvePath (filename);

    var stream: FileStream = new FileStream();

    Stream.Open (file, FileMode.WRITE);

    stream.writeBytes (imageBytes);

    Stream.Close ();

    Review the content of the file to check if the file is written successfully.

    var readStream:FileStream = new FileStream();

    readStream.open (file, FileMode.READ);

    var: string result = readStream.readUTFBytes (readStream.bytesAvailable);

    trace ("rear read result =" + result); The result is shown here as planned.

    file.addEventListener (Event.COMPLETE, uploadComplete);

    file.addEventListener (IOErrorEvent.IO_ERROR, ioError);

    file.addEventListener (SecurityErrorEvent.SECURITY_ERROR, securityError);

    file.addEventListener (ErrorEvent.ERROR, someError);

    file.addEventListener (ProgressEvent.PROGRESS, onProgress);

    file.upload (urlReq); This line does not work. No handler is executed. No http request struck the coast server.

    trace ("after file upload test");

    } catch (error) {}

    trace (e);

    }

    }

    Complete Manager

    private function uploadComplete (event: Event): void

    {

    trace ("Upload successful.");

    }

    IOError handler

    private void ioError (error: IOErrorEvent): void

    {

    trace ("Upload failed:"+ error.text ");

    }

    Manager SecurityError

    private void securityError(error:SecurityErrorEvent):void {}

    trace ("security error:" + error.text);

    }

    Another Manager

    private void someError(error:ErrorEvent):void {}

    trace ("an error" + error.text);

    }

    Progress Manager

    private void onProgress(event:ProgressEvent):void {}

    trace ("progressHandler");

    }

    This method is executed to call the URLLoader.load when the delicate touch.

    protected void OnTrickyButtonPressed(event: MouseEvent): void {}

    var urlReq:URLRequest = new URLRequest ("http://200.60.99.31/"); This points to a server not - exist

    urlReq.method = URLRequestMethod.POST;

    urlReq.data = new ByteArray();

    var loader: URLLoader = new URLLoader();

    try {}

    Loader.Load (urlReq); This line is very important in iOS7. He decides if the latter file.upload may work.

    But in iOS8, file.upload does not work even if that line is executed.

    trace ("after urlloader load");

    } catch (error) {}

    trace (e);

    }

    }

    []] >

    < / fx:Script >

    < s:Button = "200" x = "200" width = "400" height = "200" label = "Upload" click = "OnUploadButtonPressed (event)" / > "

    < s:Button = "200" x = "500" width = "400" height = "200" label = "Tricky" click = "OnTrickyButtonPressed (event)" / > "

    < / s:View >

    ------------------------------------------------------------------------------------------ -----------------------------------------------------------------------


    When it is run on the simulator of the Air, it works very well as expectedand the file is successfully downloaded to the server. But when run on iOS devices (in my case, iPad), as I explained at the beginning, no event on the file upload handler is executed and not the http request has even hit the server. So I think that the problem may come from the client side.

    During my attempt to solve the problem, I found something complicated about this problem on iOS7. In other words, if you call the URLLoader.load method (although the URLLoader.load points to an address non-existed) before calling the File.upload method, the File.upload will work as expected on iOS7. Specifically, when the above OnTrickyButtonPressed method is run before the OnUploadButtonPressedmethod, File.upload will succeed on iOS7. But this only happens on iOS7. On iOS8, File.upload still refuses to work, regardless of knowing if the URLLoader.load is executed before.

    I think in my case, the problem is not the problem of sandbox or a session of Firefox problem described in the two links below, because not even a http request hit the side server. It seems that the Air SDK for iOS comes to fail send the http reason request any.

    http://StackOverflow.com/questions/5967382/Flex-4-FileReference-issues-with-Firefox

    http://StackOverflow.com/questions/351258/how-do-i-make-Flex-file-upload-work-on-Firefox-a nd-safari

    To make my problem clear, I list my environment below:

    • Development environment: Windows7 (64-bit) / Mac os 10.9.4 (tested on both OS platforms.)
    • IDE: Flash Builder 4.7
    • Air SDK: 3.8 / 16.0.0 (after that I have updated to the latest Air SDK 16.0.0, problem persists.)
    • Application server: Tomcat7 + spring

    Finally, I want to mention that download the file using URLLoader.load isn't an option in my case because I want to download large files in the future, which cannot be addressed with the URLLoader.load.

    I struggled with this for days. If I really appreciate it if anyone has an idea about this.

    Thanks in advance.

    Hi KA RYU.

    We have reproduced the issue successfully, our team would work on it.

    -Tushar

  • QNXWebView changes / broken in PB 1.0.6.2390 / AIR SDK 1.1

    I've updated my PlayBook OS device to: 1.0.6.2390 and all seemed ok, but I noticed a few apps I have who use the QNXWebView did not work (the display of web pages simply does not load).

    So I have now 2 concerns:

    1. What has changed (for example what should I fix to make it work... made a property change that I need to put it together or not?)
    2. For AppWorld, last I checked, I could only target a file/*.bar against a PlayBook OS v1.0 release (+), are not specifically against the 1.0.6.xxxx it's a problem now, as Elena Laskavaia , it is stated in this post: http://supportforums.blackberry.com/t5/Tablet-OS-SDK-for-Adobe-AIR/SDK-1-1-for-Adobe-Air-targeting-O... there were changes for the runtime AIR 2.7, making the compilation with the inconsistent AIR SDK 1.1 with devices that are running an earlier version of the operating system (for example less only 1.0.6.xxxx)

    Now I'm stuck.  Even when I have difficulty #1 above, I can't really present the new version in AppWorld, because it will be fix for users with OS 1.0.6.x, but totally break it for users with a previous operating system.

    SOLVED!

    The behavior of the QNXStageWebView changed to PB 1.0.6.2390 / AIR SDK 1.1 (to actually follow the posted API specifications)

    See API here

    http://www.BlackBerry.com/developers/docs/airapi/1.1.0/index.html?QNX/media/QNXStageWebView.html&QNX...

    In order to create/use a QNXStageWebView, you must do the following:

    1.) set the visible property to true (the default value is actually false)

    2) the value of the stage to the stage of your application property.  This must be your step 'ROOT '.  If you were like me and had layers of Sprite on top of your sprite main 'ROOT', then the property of 'this.stage' sprites 'child' is not valid.

    3.) set viewPort to a rectangle with dimensions required

    4.) then load a URL as needed...

    In my case, I was not #2 above, creating the .stage property.  So for anyone else that has not been updated, you'll probably want to get as soon as possible on this.

    Thank you all!

  • How confirm BB10 Air SDK was installed in flash builder 4.6

    I just downloaded and installed what I think is the BB10 'or' Air SDK from here

    https://developer.BlackBerry.com/air/download/

    When I create a new mobile project with flash builder 4.6, the default descriptor bar is the same as the playbook we.

    for example, this commented out line:

    I was wondering if I failed somewhere along the way and always use the Tablet SDK or if it looks just like that

    -edit-

    also, I need new signature for BB10 keys or can I use everything that exists from a previous installation of the playbook.

    Guess which has not been updated. New BB10 method is:

    Assets/Splash.jpg

    Each image in the list is of a size to use for the device in landscape and portrait. It will automatically detect and use the correct start depending on the size of the device screen.

    Same key signature as with the PlayBook.

  • Where can I find Adobe AIR SDK 2.5?

    This may seem a stupid question, but I can't find Adobe AIR SDK 2.5 anywhere to download.  I try to install the new SDK Blackberry and he prays the AIR SDK but all I can find online is Adobe AIR SDK 2.6 is not working Blackberry requires 2.5.  Someone at - there a place I can download the SDK from?

    The current website Adobe AIR SDK is 2.6. And BlackBerry WebWorks SDK version 2.5 don't acknowledge that during installation. BlackBerry can be updated in the next release.

    For now, you can get Adobe AIR SDK 2.5 for Windows in

    http://airdownload.Adobe.com/air/win/download/2.5/AdobeAIRSDK.zip

    Good luck.

  • Overview of the results of AIR SDK

    Right now I use AIR SDK 19 and can't seem to get anything to work when you use a newer version of the SDK.

    I can provide more information, but here is my configuration:

    -Computer MAC, OSX 10.11.4

    -l' mobile application (literally nothing in the constructor) empty target for Ios and debugging on Ipad3 (ios 8.4.1).

    -valid certificate of dev and profile.

    -All the Kits AIR SDK from 17 to 22 beta.

    -After each test, FB is closed and SDK is replaced with the newer version.

    compile with the sdk 17: success

    compile with the sdk 18: success

    compile with the sdk 19: success

    compile with the sdk 20: failure with "applicationVerificationFailed".

    compile with the sdk 21: failed with (no such file or directory)

    compile with the sdk 22 beta: success


    Adding just a donkey (e-mail) with 2 lines of code to display the email view:


    compile with the sdk 17: success, illustrated by email

    compile with the sdk 18: successshown by email

    compile with the sdk 19: successshown by email

    compile with the sdk 20: failure with "applicationVerificationFailed".

    compile with the sdk 21: failed with (no such file or directory)

    compile with the sdk 22 beta: success, e-mail blocking app


    I can even show video of all these tests. After reading the release notes for 20, 21, 22 I can't find anything which could justify such a result. No new way, it seems do the donkey is required, no new way to the ios installation project is necessary, same thing on the side of Apple. So I can't find a reason any as to why 20, 21, 22 cannot work out of the box. Anyone like no matter what clue here?

    Hello

    We are not able to reproduce this problem with the project that you have provided. We tried to reproduce this problem by using mac 10.11 with java 7u79 on ipad (8.4.1), ios 9.3.1(I téléphone 6 +) and ios7 using AIR 19,20,21 and 22. Can you please try with the latest version available to

    Download Adobe AIR Beta - Adobe Labs 22 and let us know.

    Thank you

    Adobe AIR Team

  • AIR SDK 16.0.0.283 crashed into the startup time

    Dear Adobe Developer,

    My application receives only geolocation and I have a problem with iOS 7 64-bit.  App broke down at the start of time when the app was built with AIR SDK 16.0.0.272 or AIR SDK 16.0.0.283.

    Come on you intend to solve the problem?

    Following is the result:

    Devices in Put to the test Comment

    32-bit - iOS 6.x

    past

    32-bit - iOS 7.x

    past

    32-bit - iOS 8.x

    past

    64 bit - iOS 7.x

    Crashed

    The latest version of the SDK of AIR 16 has not yet supported for such devices.

    64 bit - iOS 8.x

    past

    Android

    past

    I thought it was a known problem in the forums.

    Bug #3927984 - ANEs 64-bit does not not on iOS7 or less

  • BUG - rotation of the default image on iOS with AIR SDK 16.0.0.250

    Hi guys!

    I just changed AIR SDK 16.0.0.250. Everything was good except a very strange problem with the default pictures on iOS devices.

    My application runs in landscape mode. In my application, I got the default images that appear during the application loading phase.

    When the application starts, first of all by default the image correctly, only for a very short time, I see default image rotates 90 degrees and adjusted to fill the screen, then disappears and the application is loading.

    Here's a video that illustrates the problem: http://youtu.be/Ry1l1v7dQss

    It's very strange, so I want to know if anyone else knows how to handle this problem and what could the source of it? Some info that might help: Application descriptor:

    <initialWindow>
        <content>SWF file name is set automatically at compile time</content>
        <visible>true</visible>
        <aspectRatio>landscape</aspectRatio>
        <autoOrients>true</autoOrients>
        <fullScreen>true</fullScreen>>
        <renderMode>direct</renderMode>
        <softKeyboardBehavior>none</softKeyboardBehavior>
    </initialWindow>

    Default image list:

    So, to me, that looks like a bug in the AIR SDK 16.0.0.250, on AIR SDK 15. XXX everything was fine.

    I logged this as a bug, a few days ago, and today update of AIR 16 shows what he listed as a known issue. So hopefully it will get fixed.

  • Is it the AIR SDK difficulty iPhone 15.0.0.302 6 more the size of the screen?

    Hi all

    There is a known issue for AIR SDK 15.0.0.302 who said the iPhone 6 and reports the size of screen evil. Is - it still a known issue in the version release of the AIR SDK? I do not have a 6 more, if I'm not sure what this means for our applications? Or how to to check what he will seek in a simulator. Is there a way?

    Thank you!

    NM, looks like this is bug #3829474.  Bug notes, we have this problem in the Simulator, but the real device is always make an incorrect scale size (via apple APIs.)  The last bug comment suggests that this should be tested again in the next update of iOS.

  • Flash cs6 exit android x 86-air incorporate air sdk 14 or 15

    Hello

    Download the air 14 sdk and put in the air sdk folder in flash cs6 and airglobal.swc in Common\Configuration\ActionScript 3.0\AIR3.2

    compile my program in the air does not incorporate, install air runtime x 86 in my x 86 android device and install my program on the device, it is fast

    but

    When completely integrate my program in the air and install my program in my x 86 android device is very slow...

    compile my program in the air stir but this output is for the arm, but I need it for android x 86... how to use the sdk for android x 86 14 air incorporate air in flash cs6?

    How can I specify the type?  (x 86 or arm7) for air incorporate into flash cs6 by air sdk 14 or 15

    You can't package for x 86 of the latest version of Flash Pro. At least for the time being, you can use the command line.

  • Use the AIR sdk in a Panel

    Hello

    I'd love to be able to access the file with an expert system. I read that after cs5 panels using the infrastructure of the AIR, but I'm not entirely sure how to use it. I am currently using the sdk flex 3.4.0 that was required for CS4. How can I do to upgrade to the AIR sdk?

    Thank you

    Cameron

    I just converted one of mine. The magic is in .actionScriptProperties. Change this:

    useApolloConfig = 'true '.

    with a text editor. I leave Flex * before editing it. My icon in Flex it still shows that Fx instead of the icon of AIR but the AIR feature works.

  • Can I use any file .swf on iphone using AIR SDK 2.6?

    Hello

    Can I do any file executable .swf on iphone/ipad using AIR SDK 2.6? If so, how?

    If it isn't then why? And if I can't run each file .swf on apple devices can

    What type of .swf file, I can run on these devices?

    Thank you

    Judey

    Hello Alyson.

    I tried with the SWF file to the media spotlight. My conclusions.

    It works, but it continues to display the blackheads animation loading.

    It doesn't show a helloworld animation because the ActionScript in the SWF file tries to load RSL that is not supported on iOS.

    Hope that answers your question.

    Georges R. White

    IOS of the AIR

  • To install the device driver required to access your hard drive, insert the installation media containing the driver files, then click OK."

    I'm trying to move from xp to windows 7. I spent all the requirement but she says to install the device driver required to access your hard drive, insert the installation media containing the driver files and then click OK. "what should I do? Where can I find the driver?

    Guess he would seek software/drivers for the chipset MB

    & sata/IDE controller software. Get the MB hardware specifications, go to the mfg

    Web site & download the software and drivers. If intel, download the chipset installation

    utility & install it 1. The other would be the SATA or / and drivers for the MB IDE

    controllers, 'Matrix Storage console' would be the one, also chk for desktop

    Internet downloads, amd, and other brand materials would be substantially the same.

  • Using the two PB 2.0 + SDK &amp; BB10 Air SDK in Flash Builder 4.6

    Hello

    Any of you have experience creating applications using the PB2 + and BB10 Air SDK in Flash Builder? How do you change the build configuration between two SOFTWARE development kits? So let's say you make apps for Playbook and at the same time you are doing apps for BB10...

    Where do you set your IDE with these settings?

    Looking forward to your answers.

    There is essentially only one way to do it: you first install the 2.0 + SDK, then the BB10 Beta SDK. This is how you make sure that you have the data of these two software development kits installed on your pc. The Flash Builder plugin will be the BB10 sdk.

    I tested some of the components of the SDK BB10 on PlayBook OS 2.0.1. Needless to say that some features are not supported.
    Note: When I talk about libraries and 'ane's, I mean those provided by the SDK BB10. The following findings are valid with a pre-BB10 PlayBook OS 2.0.1 is the last one I think. PlayBook OS 2.1 can be considered BB10, although some features don't work there either.
    Here's what I found: you can use fuse controls, but the classes in the package "qnx.fuse.ui.dialog" do not work because the classes in the package "qnx.fuse.ui.window" do NOT work.
    You cannot use "QNXDevice.ane" because "NavControl" class which is indispensable to the actions of the bezel does not work and the notifications do not work either.
    If you use "fuse" components, you must also use 'QNXSkins.ane '.
    The "QNXLocale.ane" does not work. 'QNXNetwork.ane' no test however. The framework of the call does not work.

    Phew, that was some writing. If I missed something or you have any other questions, feel free to ask.

  • Which version of the AIR SDK to use for BB10

    Hello

    I recently moved my dev to a new Mac environment, so I had to reinstall everything, I installed the BB 3.0 sdk and robbed the air sdk 3, 4, I can compile an application, I've migrated any signature and debug tokens (which is good, cards app are OK), but whenever I try to launch my AIR on the BB10 application It opens and closes immediately before anything, even a simple HelloWorld fails.

    Is it because I compiled against sdk 3.4 AIR?

    Sites of dev clearly indicates "Adobe AIR SDK 2.6 or later", which miss me so much?

    Thank you!

    Currently, we currently support only AIR version 3.1. As Tim mentioned here we will update 3.3 or 3.4 in the future.

    I'll test this, but your application should be supported if you have the latest version of the SDK installed and the target AIR 3.1.

    I'll make sure that dispel us any confusion in our documentation and SDK Installer software.

    Kind regards

    Dustin

Maybe you are looking for

  • Microsoft Word constantly crashing in El Capitan

    Is 10.11.6 has finally solved the problem that El Capitan does not seem able to support a fundamental piece of software widely used as MS Word? I'm so frustrated that every OS X the so called 'upgrade' to date has made this problem worse, not better.

  • Is there a change box facility available in the editor?

    Often typing with Caps Lock on when I do not want; or vice versa. Rather than retype would be great select words and then change break as MSWORD. Top-> bottom and vice Versa + capitalize the word function

  • Upgrade Ram NB550D question!

    Well I just ordered my NB550D and I was wonderin is there a certain type of ram ddr3, I need? Like theres 200pin/204pin SO-DIMM etc. >.< all="" abit=""> That's what I was looking at G.SKILL 2GB DDR3 1333 (PC3-10666), F3-10666CL9S-2GBSQhttp://penta.co

  • BlackBerry Smartphones Blackberry identity update

    I searched the archives for more than an hour and couldn't find anything on this problem... Since I installed Blackberry App World 3.0, whenever I go to BAW it tells me I have to install a Blackberry identity update, if I say 'no' he throws me and I

  • KB3057839 breaks the windows services that run the GUI programs

    For reasons of inheritance, one of our tracks to windows service applications a 3rd party tool which is a graphical application in general. but also has command line switches to run in batch mode. The 3rd third party provider does not (and will not)