phone gap is not showing simulator on IOS 6 - ios

I am new to phone gap i have created app for ios by following the steps given on
phonegap IOS
when i run the application by choosing target Cordova it build succeeded but it is not showing simulator
when i choose target helloworld it give me two errors
"Apple Mach-O Linker error"
I am using,
xcode 4.5,
MAC OS 10.8,
phonegap 2.2.0

By changing phonegap version to old one 2.1.0 Issue solved

Related

ERROR ITMS-90725: "This app was built with the iOS 12.1 SDK. New apps for iPhone or iPad must be built with the iOS 13 SDK or later."

I use build phonegap for build IOS app....I genarated .ipa file with last version of phonegap build but when I try yo upload .ipa file to apple store it give that error
ERROR ITMS-90725: "SDK Version Issue. This app was built with the iOS 12.1 SDK. New apps for iPhone or iPad must be built with the iOS 13 SDK or later."
what should I do?
You'll need to use a service which does support the latest version of XCode (currently 11.6), like VoltBuilder, Ionic or Monaca. It doesn't look like PhoneGap is ever going to be updated.
Disclosure: I'm one of the developers of VoltBuilder.
Currently there is no way to build on PhoneGap Build Cloud targeting iOS 13, since it requires cordova 6.0.0 and the lastest phonegap-cli avaiable is 9.0.0 which uses cordova 5.0.1 which targets iOS 12.1 and xcode 10.
You can build localy using cordova 6.0.0, if you don't have a mac you can try macincloud or another could solution as monaca and others.

Why is XCode ignoring my Deployment Target?

I have an iPad running iOS 7.0.4 connected to my machine. I am attempting to deploy an Ionic (Cordova) project to the device.
My Deployment Target is set to 7.0:
However, I continue getting the "deployment target" error message:
How can I get XCode to successfully deploy to my iPad?
I figured it out. Cordova version 4.0.0+, upon which Ionic depends, requires iOS 8.0+. It is hard-coded into the platforms/ios/cordova/build.xcconfig file:
IPHONEOS_DEPLOYMENT_TARGET = 8.0
This hard-coded value was overriding any changes I made in the Xcode GUI. I was able to get my project to deploy on my device by changing 8.0 to 7.0 in build.xcconfig.
For others who are also using Ionic/Cordova, I suppose the solution is disappointing but simple: only target iOS 8.0 and up.
References:
Cordova Announcement
JIRA Issue

How to Fix Xcode Error “Could not find Developer Disk Image” on iOS9.2

I am trying to test my app on iOS 9.2 device using Xcode 7.1.1, and getting the error message
“Could not find Developer Disk Image”.
Googled and found that, this is due to the Version Mismatch between Xcode deployment target and iOS version. On Xcode 7.1, I can see the deployment target till iOS 9.1 only.
So, I do understand that have to update my Xcode to the 7.2 version for deployment target iOS 9.2. But i don't wanna do the update.
Is there any valid way to test my app using Xcode 7.1 on iOS 9.2 device?
Fix it by downloading XCode 7.2 dmg and installed it as a new copy.
or
Uninstall exiting one and directly download new version of xcode from App Store.
Have look on same thread in SO .
If you go for update there also some problem have look on this.
Your Xcode iOS SDK should not be less that Device iOS SDK you can install app as Internal Tester by TestFlight. or www.diawi.com

Xcode 6.4 "Could not download and install iOS 8.3 simulator"

I've been trying to install iOS simulators 8.3 & 8.4 on Xcode 6.3.2 an 6.4 beta respectively. In the first case is not even an option to download this simulator while in Xcode 6.4 it shows an error "Could not download and install iOS 8.3 Simulator. Authorization is required to install the packages". I've searched the web but I could not find anything so I tries reinstalling Xcode from Apple developer website as well as from the app store with no change at all. The only simulator I can use is 8.2. I cannot install any other version. Any help would be really appreciated.
This is the error on Xcode 6.4 with no additional option of iOS 8.4 Simulator
These are the simulator options for me to download which result in that error
These are my options in Xcode 6.3.2 with no option for iOS 8.3
I found a workaround on the Apple forums. If you run Xcode using sudo the simulator downloads and installs work just fine:
sudo /Applications/Xcode.app/Contents/MacOS/Xcode
Note: Once the downloads and installs are complete you should quit Xcode and start it normally.
The iOS 8.3 Simulator runtime is includes in Xcode 6.3 (which is why it isn't offered as an additional download).
The iOS 8.3 Simulator runtime should be downloadable from Xcode 6.4, as you show. Your dialog box reports that there was an authentication problem when attempting to install the package. You need to provide administrator credentials when installing the package.
The reason you are getting your "iPhone 6 runs iOS 8.2 which is lower than -project name- minimum deployment target." errors is because you are selecting an iPhone 6 with iOS 8.2 on it and not an iPhone 6 with iOS 8.3 on it.
Use 'xcrun simctl create' or Xcode's Devices window to create the iOS 8.3 devices you need.

Building iOS6 app with Titanium SDK 3.1.3

I'm using Titanium SDK 3.1.3, XCode 5, and have simulators for both iOS 6.1 and iOS 7.
I'm trying to build an iOS 6.1 app in the simulator via the Titanium CLI but I get the following error:
[ERROR] Invalid --ios-version value '6.1'
Accepted values:
7.0
Which is odd because the release notes for the SDK says "You will still be able to compile iOS 6 apps with Xcode 5. Additionally, Xcode 5.0 requires Mac OS X 10.8.4 or later."
Thanks in advance for your inputs.
My bad — a proper SDK was missing inside Xcode's folders:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/iPhoneOS6.1.sdk

Resources