Questions tagged [deployment-target]

A deployment target is a build setting that specifies the required software platform version on which the built software will run.

A deployment target is a software build setting that specifies the required software platform version on which the built software will run. This setting informs the compiler which SDK version to use.

63 questions
0
votes
1 answer

arm64/x86_64 universal binary created with lipo is missing deployment target

Context I'm converting several libraries/frameworks that my Mac app uses to be Universal Binaries for the new Apple Silicon Macs. Problem I have two versions of a binary framework: one compiled for x86_64 and one compiled for arm64. I always check…
Bryan
  • 4,628
  • 3
  • 36
  • 62
0
votes
1 answer

Using SDK that calls deprecated APIs

Im developing an SDK and its deployment target is set to 9.0. Im using some API's that are deprecated in iOS 10 and above and others that are deprecated at iOS 13 and above. My question is what will happen to an app that is consuming my SDK and its…
Max
  • 799
  • 1
  • 5
  • 17
0
votes
0 answers

Lower Deployment Target on Project with Cocoapods

I've been creating a project with the default development target (I believe it was 11.1). For whatever reason, I thought itd be a good idea to lower the development target to 10.0 which created 36 errors mostly of my classes not recognizing pods I…
Jacobo Koenig
  • 11,728
  • 9
  • 40
  • 75
0
votes
2 answers

Why can't I install an app on my iPad with the correct Deployment Target?

I have a project for the iPhone, and I'm using an iPad to test it out on. My iPad is running 3.2. The project has a Base SDK of 4.2 and a Deployment target of 3.2. However, when I try to install it on the iPad, I get the message: The Info.plist for…
jowie
  • 8,028
  • 8
  • 55
  • 94
0
votes
1 answer

XCode Base SDK older then Deployment target

I have a project that uses Base SDK 10.4. For some reason (using LLVM C++ standard library) I need to set Deployment Target to 10.7. But when I try to build project I have an error: 'Availability.h' file not found. So I have a main question: is it…
JeKich
  • 13
  • 3
0
votes
1 answer

How to safely change deployment target in ios

I have developed a app using swift 2.2 with Xcode 7.3.1 i have set my deployment target 9.3 and base SDK is also 9.3.Now i want reduce my deployment target to 8.1.what are the proper procedure to change deployment target without affecting any of the…
user7333282
  • 101
  • 1
  • 2
  • 15
0
votes
1 answer

How to install a CocoaPod that requires macOS 10.10 in a project with deployment target 10.7?

I am working on an existing macOS project that uses 10.7 as deployment target. The app supports using Dropbox (API v1 / Core API) for quite a while. Since this API will be shutdown in couple of month, I am updating the App to use API v2 instead.…
Andrei Herford
  • 17,570
  • 19
  • 91
  • 225
0
votes
0 answers

tvOS deployment target absent

I am working on my first tvos. Need suggestions from experienced developers as I dont see many solution available on net. My worry is in my project setting ,info tab, it says no macos or ios target found. How can I change it to tvos? Beside this I…
Deep
  • 51
  • 5
0
votes
0 answers

Android Studio select deployment target

I was working on some app and had a device connected to the the computer, also I had an emulator, both of them worked properly. I d'ont know what happend but now I cant see any of them. It says "nothing to show" when I open the window of "select…
Tomerv5
  • 13
  • 5
0
votes
0 answers

How to find out what your deployment target should be

I've always wondered how to correctly determine your deployment target for an app. I am using Sprite kit in objective-c so I guessing my deployment target should be roughly 7.0. Would it be correct to find your deployment target by testing different…
Andrew
  • 391
  • 3
  • 15
0
votes
1 answer

Why am I getting, "Error 392 Error occurred in deployment step 'Activate Features': Operation is not valid due to the current state of the object."

Does a missing "Module" section in the Elements.xml file cause "Error 392 Error occurred in deployment step 'Activate Features': Operation is not valid due to the current state of the object."? All of a sudden, I get that error when trying to…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
0
votes
1 answer

CLLocationManager didUpdateLocations or didUpdateToLocation

I my iOS i am using CLLocationManager, but i am not sure which delegate method to use to get the location updates. There are two methods - (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation …
Abdul Samad
  • 5,748
  • 17
  • 56
  • 70
0
votes
1 answer

In Xcode, why does a specific Deployment Target break my code, and how should I use it?

Some background info: Syntax color/highlighting and auto-suggest stopped working correctly. I read a lot of questions about how to fix this but none of them helped me as they were related to Derived Data. I'm learning Swift from some online…
Ed Brissenden
  • 177
  • 2
  • 13
0
votes
3 answers

Most used iOS versions

I find it hard to locate some kind of information source which will give me a breakdown of the most used iOS versions as of today. I am working on my app and trying to decide on my "Deployment Target". I want to choose iOS 5.0 but not sure how many…
Roy K
  • 3,319
  • 2
  • 27
  • 43
0
votes
0 answers

iOS backwards compatibility issue in Xcode

I'm developing with Xcode 4.6.2, which includes iOS 6.1 SDK. I need to make my app compatible from iOS 5, and I don`t know exactly how should I manage this backwards compatibility. I've downloaded the iOS 5.0 simulator, but I'm not sure if I also…
AppsDev
  • 12,319
  • 23
  • 93
  • 186