Fail to run on my iOS device

When updating Xcode 3 to Xcode 4 and running on my ios device, it said: "The version of iOS on “ sen” doesn't match any of the versions of iOS supported for development with this installation of the iOS SDK."
I couldn't change the Deployment Target to ios5. The leatest version I could change is 4.3.
How to fix it???
Thanks in advance.

What version iOS is on your device?
Did you go to Xcode Preferences/Downloads/Components and install support for 4.3 devices?

Similar Messages

  • Error while running the Fiori applications in ios device (iPad)

    Hi Champs,
    Few of the Fiori standard applications throwing error while running on the ios devices. We are having all the components installed are latest versions. Could anybody help us?
    PFA screen shots of error.
    Thanks & Regards,
    Dharmangouda

    Hi Dharman,
    Are you experiencing the same issue as explained here Error while opening Fiori app on iPad
    Regards,
    Dhani

  • Logitech Touch Mouse App won't work or display cursor on a iOS device running RD Client App

    I was trying to use Logitech Touch Mouse App installed on a iPhone5 as a physical mouse with a RD Client installed on another iPad mini. The host is a NB running Windows 7. The Touch mouse movement is noticeable on the RDC screen on iPad mini, but the cursor
    is missing. It appears the cursor image was blocked by the RDC.
    It would be very helpfull for the RDC running on a iOS device to support this type of WiFi mouse App to enable a physical mouse (through a smart device). I can see many usage models of RD Client with this type of physical mouse feature.

    Hi,
    The version 8.1.3 is released, please update to the latest version and see how it works,
    https://itunes.apple.com/us/app/microsoft-remote-desktop/id714464092
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • AIR 3.0 Socket, Standard packaging method = won't works on iOS device

    Hello,
    I'm using FB 4.5.1. with AIR 3.0.
    My project uses Socket connection class, which works as expected in the simulator run, even when packaged and run in the iOS device (iPad or iPhone) with Fast package method. But whenever we're doing the package as Standard mode (the certificates are okay to package for iOS) it stops working (the socket). The connection even not returning any event either - i.e. IOError, Security Error nothing. What's the difference the connection creates between Fast and Standard package mode (?)
    Any security reason or it's just a bug.
    Any help would be great!
    Thanks & Regards,
    Santanu Karar

    Its a very basic code . You need a server to which you will connect this socket .
    Enter ip address and port number before clicking the send button
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
    <![CDATA[
    import flash.events.Event;
    import flash.events.IOErrorEvent;
    import flash.events.MouseEvent;
    import flash.events.ProgressEvent;
    import flash.events.SecurityErrorEvent;
    import flash.net.SecureSocket;
    import flash.net.Socket;
    private function init():void
    var socket:Socket = new Socket
    socket.addEventListener(Event.CONNECT,connecthandler)
    try
    socket.connect(remoteip.text,Number(remoteport.text))
    catch(e:Error)
    myarea.text = e.name + e.message
    private function connecthandler (e:Event)
    {   myarea.text += "hi i am connected"
    e.target.writeUTFBytes("hello");
    e.target.flush()
    ]]>
    </fx:Script>
    <s:Button x="83" y="96" label="Send" click="init();"/>
    <s:TextInput x="251" y="96" id="remoteip"/>
    <s:TextInput x="251" y="137"  id="remoteport"/>
    <s:Label x="198" y="98" text="ip"/>
    <s:Label x="171" y="137" text="pport"/>
    <s:TextArea x="70" y="197" width="392" id="myarea" height="210"/>
    </s:Application>

  • CS6: New feature doesn't work: Publish direct to iOS device

    Just upgraded to Flash CS6 v12.0.2.  It has a new feature, in File > AIR 3.2 For iOS Settings > Deployment tab > "Install Application On The Connected iOS Device."
    This feature is disabled.  Does anyone know how to get it enabled?
    I do have iTunes installed, per http://helpx.adobe.com/flash/using/packaging-applications-air-ios.html#id_91536 .

    i've not seen this problem before so i suspect the issue is an os problem or usb port problem.  i would be especially suspicous of an usb port issue if the problem is intermittant. 
    have your tried a different usb port? 
    once your iOS device is recognized by win explorer AND you leave it connected, does win explorer ever fail to continue recognizing your iOS device is connected?

  • Need help to deauthorize my adobe id to ios devices.

    Need help to deauthorize my adobe id to ios devices.

    That will depend which Adobe DRM reader app you are running on the IOS device.
    It should either be under some settings within the app itself,
    or in app section within the general settings area of the device.
    Might be best to do a google search for 'deauthorize bluefire ios'
    (replacing bluefire with whatever your app is).

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • IOS device failed to get ip address on multiple wlan on the same anchor controller

    Dear Experts:
    in my implementation, we need 2 WLANs be served on the same anchor controller.
    WLAN1: wep/40bit, integration with NAC/OOB on anchor controller for guest wlan service.
    and guest account controlled by NACguest server.
    WLAN2: wep/40bit, no layer3 secuirty for temporary using.
    foreign controller: WiSM on v6.0.196.4 (also testing on 6.0.182.0)
    anchor controller: WLC4402 on v6.0.196.4
    on WLAN1:
    Windows7 client get ip address correctly.
    iOS (iPhone4 on 4.3.1/4.3.2, iPad2 on 4.3.1/4.3.2) can get ip address correctly on WLAN1.
    WLAN2, iOS device cannot get ip address.
    compare with debug message "debug clien mac" + "debug dhcp message enable"
    on both foreign and anchor controller.
    on foreign controller:
    PM state has changed from: DHCP_REQD (7) Change state to RUN (20) last state RUN (20)
    on anchor controller:
    PM state always stay on: DHCP_REQD (7) Change state to DHCP_REQD (7) last state DHCP_REQD (7)
    Enable/Disable DHCP Address Assignment Required is not work.
    Enable/Disable DHCP proxy is not work.
    Any hit this issue when get ip address failed in multiple WLANs on the same anchor controller?
    In attachment log file,
    DMZ.log: anchor controller on DMZ.
    S3p1.log: WiSM on v6.0.182.0
    S3p2.log: WiSM on v6.0.196.4
    client mac: 00:1f:3b:05:33:c1, Windows7 Client
    client mac: 58:55:ca:cf:d2:07, iPhone4 with 4.3.1,
    WLAN1 subnet: 10.61.246.0/23
    WLAN2 subnet: 10.61.248.0/23

    Hi, Nicolas:
    just checking the attachment for the run-config on foreign/anchor controller.
    DMZ_run.config  - anchor controller
    s3p1_run.config - WiSM on v6.0.182.0
    s3p2_run.config - WiSM on v6.0.196.4
    at this moment, we have disable the wlan 10 on foreign controller, and wlan 2 on foreign controller.
    Wilson...

  • "Photos in the Camera Roll of "(your) iPhone" cannot be imported because the device is locked with a passcode.  You must unlock the device to import them."  My iPhone 5 running the latest iOS 7.1 and I'm using iPhoto '11 v 9.4.3

    "Photos in the Camera Roll of "(your) iPhone" cannot be imported because the device is locked with a passcode.  You must unlock the device to import them."  That's the new error message when I plug in my iPhone 5 running the latest iOS 7.1 into the MacBook Pro running iPhoto '11 v.9.4.3.  My Mac OSX is still 10.8.5.
    So, I unlock the iPhone by entering the "passcode" before I plug it into the MBP and still iPhoto does nothing.  At least it doesn't issue the error message above.
    I've checked both iPhoto preferences and those for Photos and Camera in the Settings on the iPhone.  There doesn't seem to be anything to change this lack of connectivity.
    What next please?

    An hour-long phone discussion with Apple Support yesterday solved this question and sorted a couple of others.
    As for this one, do not ignore any messages which pop up when you plug in your iPhone and ask "Trust this computer?".  The correct reply is "Yes", not "Cancel".
    OK, you cancelled like I did, thinking "What on earth is this for?".  Mistake.  You can force the issue by having iTunes open when you next plug in your iPhone.  Tell the iPhone that it can trust its old friend, your computer and voila!  Your photos can download into iPhoto again.
    Thank you, Jay with Apple Sydney, Australia!

  • File.upload on Air SDK for iOS devices failed to send http request to server.

    I am trying to use ActionScript's File.upload to upload a file on Air SDK for iOS8 environment, but the File.upload does not work properly. No handler about the file upload is executed after File.upload is invoked, and no exception is caught. When I check the network traffic of the server side, I found that no http request even hit the server after File.upload is executed. The code snippet here is very simple.
      private var file:File;
      private var dir:File;
      //This method is executed to create a file and upload it when the Upload Button is pressed.
      protected function OnUploadButtonPressed(event:MouseEvent):void{
      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) );
      try{
      dir = File.applicationStorageDirectory
      var now:Date = new Date();
      var filename:String = "test" + now.seconds + now.milliseconds + ".txt";
      file = dir.resolvePath( filename );
      var stream:FileStream = new FileStream();
      stream.open( file, FileMode.WRITE );
      stream.writeBytes( imageBytes );
      stream.close();
      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( new URLRequest("http://10.60.99.31/MyPath/fileUploadTest.do"));//This line does not work. No handler is executed. No http request hit the server side.
      } catch( e:Error ) {
      trace( e );
      //Complete Handler
      private function uploadComplete( event:Event ):void
      trace( "Upload successful." );
      //IOError handler
      private function ioError( error:IOErrorEvent ):void
      trace( "Upload failed: " + error.text );
      //SecurityError handler
      private function securityError(error:SecurityErrorEvent):void{
      trace( "Security error:" + error.text );
      //Other handler
      private function someError(error:ErrorEvent):void{
      trace("some error" + error.text);
      //Progress handler
      private function onProgress(event:ProgressEvent):void{
      trace("progressHandler");
    When executed on Air Simulator, it works fine as expected, and the file is successfully uploaded to the server. But When executed on iOS devices(in my case, iPad), as I explain early, no handler about the file upload is executed, and no the http request even hit the server. So I think the problem may be in the client side. It seems that the Air SDK for iOS just failed to send the http request for some reason.
    To make my problem more clear, I list my environment below:
    Development Environment:  Windows7 (64bit)  / Mac os 10.9.4 (Tested on  OS platforms.)
    IDE: Flash Builder 4.7
    Air SDK:  3.8 / 16.0.0 (After I updated to the lastest Air SDK 16.0.0 , the problem still exists.)
    Application Server:  Tomcat7 + Spring
    Target OS: iOS 8
    I have been struggling for this for days. So I really appreciate it if anyone has any idea about this.
    Thanks in advance.

    Hi bluewindice ,
    As you have quoted ( ActionScript's File.upload does not work on Air SDK for iOS devices ) , this issue has been replicated at our end, and our team will be working on it.
    Thanks,
    Tushar

  • HT201210 you are running the latest version of iTunes, have no other USB devices attached, have no security software installed, and are directly connected to your ISP source, simply restarting the computer and the iOS device can clear up certain issues th

    you are running the latest version of iTunes, have no other USB devices attached, have no security software installed, and are directly connected to your ISP source, simply restarting the computer and the iOS device can clear up certain issues that could prevent you from restoring. After restarting the computer and iOS device, attempt to restore again.

    How big is your library?  I would recommend the following troubleshooting steps:
    - Backup your library.  Always a good idea before messing with things.  
    - Create a new library.   Refer to this article for details:  http://support.apple.com/kb/HT1589.  This won't delete your old library, you're just creating a new empty one.  Also refer to this article to get back to your old library later.
    - Add a few albums into this new library.  Not everything, just a small sampling, as a test.
    - Activate Match on this new library.  You shouldn't have to re-pay, it should just say "Add Computer" or similar.
    - At this point, Match should run again. With just a few albums it should complete in just a few minutes.
    If iTunes doesn't crash at this point, then likely there's something about your original library that Match doesn't like - what that is I don't know, but at least you'll know it's not your PC.   If iTunes still crashes, then if could be a number of other things, but probably not your library.   My next suggestion (if you haven't already done this) is to uninstall / reinstall iTunes.   If that doesn't work, then my next ideas you won't like.   

  • HT204264 IOS devices running out of space

    I'm testing the new Photos iCloud system described above. I signed up for the Beta. It works well but now my IOS devices have run out of space. This is because I've uploaded 100gigs worth of photos to the library by migrating my iPhoto's librbry.  The IOS devices are set to Optimize mode but have still run out of space. I realise this is a beta but surely Apple are aware of the limitations and should have published this? I own 200gigs worth of iCloud storage which I pay for so my iCloud is not even running at 50% capacity. Isn't this new iCloud photos system suppose to final,y get rid of photo storage issues? Thanks.

    RakD,
    Changing (or designating) the 'iTunes Music folder' location in the Preferences does not instruct iTunes where to look for existing songs it currently knows about, but where to store any new songs it Imports, or 'Adds' and copies to its Library organization (if that attribute is selected). This is an important distinction.
    If at all possible, move the songs back to where they were originally, allow iTunes to see them, then use iTunes to 'Consolidate' the songs to the new location on the other partition. See this link for instructions: http://discussions.apple.com/click.jspa?searchID=319008&messageID=1222994

  • No,I recently buy an android device which is running ver 4.0 and has flash player.So please make Adobe Flash Player for IOS devices pls!pls  .

    No,I recently buy an android device which is running ver 4.0 and has flash player.So please make Adobe Flash Player for IOS devices pls!pls  .

    You need to contact the folks at the link below.
    http://www.adobe.com/aboutadobe/contact.html

  • Why won't Apple allow WiFi sync'g of iOS devices on PowerPC Macs running OS 10.5.8 and latest iTunes?

    Another note, I can't believe that after all of this time with the new discussion boards, you still can't edit posts from any of Apple's iOS devices.
    I posted this on my iPAd and had to just edit this from my Mac because I accidentally posted this question before I finished.
    Royal Pain!
    Message was edited by: MichelPM

    My Mac connects to the Internet via WiFi through a WifI card. I am running OS X 10.5.8 and the latest update of iTunes to find that Apple has (I think) artificially, not allowed sync'g of iOS devices on 10.5.8. This option is greyed out and says for OS 10.6 and above only.
    Why impose this limit if we Leopard users can still use the latest version of iTunes and have WiFi capabiltity to do so?

  • TS3899 I have deleted and added my hotmail account on the ios device yet it keeps giving me the "Cannot Get Mail" "The connection to the server failed"

    I have deleted and added my hotmail account on the ios device yet it keeps giving me the "Cannot Get Mail" "The connection to the server failed"

    Hotmail has been having problems with mobile devices for several days now. It's not a problem with your phone.

Maybe you are looking for