0
votes
2answers
36 views

How to create ipa file using php

I am trying to run shell script from php file to build and archive the ios application. Here is what i have done so far In my test.php file i have written below code: <?php echo ...
1
vote
0answers
45 views

xcodebuild workspace and scheme

I am a little confused as to what happens with the xcodebuild command line tool when you specify a workspace and scheme. I understand how a configured scheme works in the XCode IDE GUI. The build ...
0
votes
0answers
17 views

to pass preferences value through command line app execution

I am creating an IOS app with cordova 2.1.0 framework and i have also added preferences name value pairs in settings tool for the app. I want to pass the value of the preferences parameter through ...
0
votes
1answer
32 views

Xcodebuild's .app crashes immediately? But Xcode's .app runs successfully

I'm using xcodebuild to build and install my app on the simulator (by copying the .app to ~/Library/Application Support/iPhone Simulator/6.1/Applications/UUID/) from the command line. I use: ...
0
votes
0answers
28 views

cordova file not recognised when app built from command line + ios

I have created an app in IOS with cordovav 2.1.0 framework. I am building the app from command line(from the path where the proj_name.xcodeproj exists) with command as :- xcodebuild -sdk iphoneos6.1 ...
0
votes
0answers
45 views

High number of xcodebuild processes get created when I click RUN

XCODE version: 4.6.2 This is what happens when I click on RUN. Message: "Running 1 of 1 custom shell scripts" and the progress bar just halts. Then just creates a lot of xcodebuild processes(I can ...
0
votes
0answers
71 views

XCode 4.5 Command Line Build Error

I am using Xcode 4.5 and using terminal command line "xcodebuild" to build my application. But I am getting following error: The following build commands failed: CompileC ...
1
vote
0answers
80 views

How to run Xcode test using Xcodebuild

I've added a new target to my project of type unit testing bundle and added some test cases. I can run this from within Xcode but I can't figure out how to run it from the command line so that I can ...
0
votes
1answer
108 views

Converting a xcodeproj in-app purchase to a pkg file from terminal (Bash) or how to convert a xcarchive file to a pkg file?

I am trying to create a bash script to automate the creation of in-app purchase pkg files. I am at a point that the script creates successfully all in-app purchase xcodeproj projects and then archive ...
1
vote
1answer
168 views

xcodebuild from command line - entitlement issues -SecItemCopyMatching: missing entitlement

I have two applications - one has a space in the name, the other doesn't. when I try to run the application through my command line build process I have problems with the application being able to ...
4
votes
0answers
131 views

XCode: Documents and Library folder for xcode command line builds

One can easily build a project run it in the simulator both from the command line like so: 1, xcodebuild -project Someproject.xcodeproj -arch i386 -sdk iphonesimulator 2, ...
2
votes
0answers
92 views

how to set xcodebuild archive name and path

im using xcodebuild to automate my release process and would like to first do an: xcodebuild -scheme MyScheme archive and then build the ipa. the problem is that xcodebuild puts the xcarchive is ...
12
votes
1answer
206 views

SSL Connections Issues when running Unit Tests from the command line

Goal Our goal is to execute our Unit Tests within a Continuous Integration environment (Jenkins) (I believe it is essential for every question to state what exactly one is trying to achieve. Maybe ...
0
votes
1answer
104 views

xcodebuild target name with Umlaut

I am trying to build an iOS App using Jenkins via the xcodebuild command. The problem is that xcodebuild does not detect the target with the German Umlaut ΓΌ. $ /usr/bin/xcodebuild -target ...
0
votes
0answers
60 views

xcodebuild fails with new literals

Hi, I'm using xcodebuild for jenkins, but with new xcode literals I get errors like: error: expected method to read dictionary element not found on object of type 'NSDictionary *' id ...
-1
votes
1answer
76 views

Implicit dependencies do not work with xcodebuild

I have a little problem with one of my projects. In my workspace I have my main project and a lot of projects for static libraries. When I build from Xcode, everything works fine, but with xcodebuild, ...
1
vote
2answers
155 views

xcodebuild failure clang:error no such file or directory:

Having a problem when building with xcodebuild. My project/app builds fine with the Xcode - gui. It simply isn't finding/building the libcryptopp library which is part of the build process. The error ...
1
vote
1answer
113 views

Project compiles in XCode but XCodeBuild produces error “No architectures …”

My project compiles fine when build within Xcode but it fails when I try to build it using xcodebuild, the last line of output is: === BUILD NATIVE TARGET XXX OF PROJECT YYY WITH CONFIGURATION Debug ...
1
vote
1answer
271 views

“command not found” with custom run script and xcodebuild

I am running a customized script which includes a command (ios-sim) which should be known to bash (the binary lies in /usr/local/bin, $PATH knows). However, when invoked by xcodebuild the console logs ...
0
votes
0answers
45 views

xcodebuild command takes more in Xcode than in the Terminal

The scenario is simple: I have an aggregation target in my iOS project that builds a couple of libraries using an sh script, which is defined in a Run Script phase of the target. No other actions is ...
0
votes
1answer
191 views

How to show the xcodebuild command line from xcode?

I'm trying to build a working simulator build from xcodebuild. Compilation works but the final product won't run on the simulator when installed via WaxSim. If I build through the Xcode GUI then the ...
2
votes
1answer
204 views

xcodebuild error scheme not configured for running

I'm trying to setup a jenkins environment for automated build. Everything works ok, when I'm in project development folder. However running same command from "jenkins" folder fails: xcodebuild ...
1
vote
0answers
73 views

Why won't my Settings.bundle update when I create an Enterprise Build with xcodebuild and xcrun?

Have been running a scripted build without problems for a few months now instead of using XCode to do it. When I create a build with XCode, that build has the up to date version of the ...
0
votes
1answer
83 views

Checking for Errors Running xcodebuild (Command Line) for iOS

I'm currently working on a script to build my iOS projects. I am able to run the archive command using... xcodebuild -workspace <workspace_name> -scheme <scheme_name> 'archive' But ...
1
vote
1answer
153 views

Is there a way of automatically writing custom values to the bundle's .plist during a build phase?

I'm setting up a CI system using Jenkins and am using agvtool to bump and set marketing & technical versions at build time. In addition to setting the versioning at build time it would be very ...
0
votes
2answers
330 views

xcodebuild archive configuration not work

I want to use xcodebuild to archive one scheme with 3 different configurations, but the configuration is never changed with archive action. Here is the content in .sh xcodebuild -workspace ...
0
votes
0answers
79 views

xcodebuild PLATFORM_NAME always == iphoneos

I am trying to build Xcode project from command line, using iphonesimulator as SDK. Here is the command line: xcodebuild -scheme SchemeName -configuration Debug -sdk iphonesimulator ...
1
vote
1answer
185 views

How to archive iOS build with xcodebuild?

I'm attempting to create a script that builds and archives my iOS project. My goal is to have a script that creates AdHoc and Distribution ipas. I've attempted something like this: xcodebuild ...
2
votes
0answers
258 views

Xcodebuild Archive Location

I'm currently trying to build an .xcarchive using this command line: xcodebuild -project onething.xcodeproj -target onething archive This places the .xcarchive within a hard to find file location, ...
1
vote
4answers
815 views

RestKit/RestKit.h' file not found error during xcodebuild

I am trying to use Jenkins-CI to auto-build an iOS project that uses Restkit, apparently, restkit resides as a project inside the main project. And the project builds successfully using the XCode-IDE. ...
17
votes
3answers
1k views

Xcode with iOS - Creating a library in a way that is easy to run in debug mode, distribute, iterate

This is for Xcode 4.5.x iOS armv7 armv7s and the sim and specifcially about Xcode project setup / project build setup: I have a project "A" that is an app in the app store. I have a project "B" that ...
1
vote
1answer
396 views

How can I tell if a iPhone binary has been compiled as a Position Independent Executable

I have an automated build process which compiles a iPhone app using a combination of xcodebuild and xcrun. When the build calls xcodebuild it passes in a xcconfig file which overrides certain ...
0
votes
1answer
123 views

NSUserdefaults using xcodebuild

xcodebuild has a parameter -userdefault=value. How can I use it to set NSUserDefaults ? Do I have to specify a file/plist?
0
votes
0answers
66 views

how to get iphone older simulator(4.3.2) on latest xcode(4.4.1)

Please suggest me a way to get older iphone simulator(4.3.2) on latest xcode (4.4.1) ??? More information when i try in xcode>preference>download>components I see only iOS 5.0,to be downloaded. But I ...
0
votes
1answer
145 views

XCode: Change xcarchive folder and file name

I'm generating the .xcarchive file from the command line, using: xcodebuild -scheme fullxsTest archive CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO This puts the file in... ...
0
votes
1answer
1k views

iOS: XCode 4.5: xcodebuild error - fatal error: 'UIKit/UIKit.h' file not found

So I would like to use xcodebuild in Terminal to create a build from a test application (called RunTeszt2). The app is an iOS single view application with nothing in it, just created and closed. When ...
0
votes
1answer
230 views

iOS: XCode 4.4.1: xcodebuild error - Unable to read diagnostics from file

So I would like to use xcodebuild in Terminal to create a build from a test application (called RunTeszt1). The app is an iOS single view application with nothing in it, just created and closed. When ...
0
votes
0answers
289 views

Using XCAB to build IOS Apps without a Mac [closed]

Building IOS Apps without a Mac Several stackoverflow answers say this is not possible. This presentation does not agree... There is an open source project called XCAB. Xcode-Auto-Build. It checks ...
2
votes
0answers
125 views

How can I get the same result of “security” command in PHP code & in terminal on OSX apache?

I got the bellow result in the terminal on OSX macpro-terminal$ whoami testuser macpro-terminal$ groups staff com.apple.access_screensharing everyone _appstore localaccounts _appserverusr ...
0
votes
1answer
152 views

iOS App Building Server

I'd like to set up an OSX server that could build iOS apps on behalf of multiple developers. (The developers would provide data used to modify a template app project in defined ways to produce the ...
0
votes
1answer
73 views

Set the DerivedData location in the same folder as project

I have a workspace with 3 different targets, for one of them I need to get the result of the build inside the folder where my code is. I also need to build this using xcodebuild, I've been ...
0
votes
1answer
212 views

Error building iOS workspace from terminal

I'm having problems building an iOS app from the terminal. I'm following the xcodebuild -h help but I can't make it work... I've been googling a lot the errors I'm getting but can't find an answer to ...
0
votes
1answer
86 views

Maintaining different URLs for different Build Configurations in xcode

I created four different build configurations to my xcode project, they are QA, STAGING< UAT<& PRODUCTION. I use 4 different urls each for one build i created. Now my question is xcode 4 ...
0
votes
1answer
255 views

IOS target link the cocoa stack library which has the library write in the C++11 standard error

I am working on a project, it's a cocoa static library that used the C++ library which is written by others. This C++ library used the C++11, and libc++(LLVM C++ standard library with C++ 11 support). ...
2
votes
0answers
330 views

Error Dynamically change provisioning profile with xcodebuild

I want to automate the build of an iPad app with different provisioning profile (because I have different iOS developer accounts). I found that i can copy the provisioning profiles directly in the ...
2
votes
1answer
605 views

Unable to build iOS project using command line but fine via Xcode interface

I have an Xcode project. When in Xcode interactively, I am able to run/build/archive using the Ad_Hoc_Distribution configuration but when I run: /usr/bin/xcodebuild -configuration Ad_Hoc_Distribution ...
0
votes
2answers
111 views

Is an OS X server necessary or preferable for doing CI iOS builds using Jenkins?

I'm currently investigating whats required and how to set up an automated CI build system for creating iOS apps. The intention is to use Jenkins as thats currently being used for other OS builds. ...
3
votes
0answers
548 views

Library header not found if CONFIGURATION_BUILD_DIR is set with xcodebuild [closed]

My iOS project uses RestKit as a static library (in a GIT submodule). When I do: xcodebuild -project myproject.xcodeproj -configuration Debug Everything goes well. However, when I change the ...
0
votes
0answers
59 views

Could I install and use xcodebuild on Darwin?

I do a lot of search, but I cannot find any reliable source. I've found iphone-dev tool supporting by Google, but the last post on the site is from 2010, so I think it is dead. Have you ever used ...
0
votes
1answer
244 views

App won't run on iOS 4.2, Architecture issue

I have an app that I developed in Xcode 4.3.2. I am using the base SDK as 5.1. The app installs fine in iOS 5.0 and above. But I need to support iOS 4.0 and above. The compiler I am using is Apple ...

1 2 3