Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS Project Update Xcode 4.2 to Xcode 4.5

enter image description here

In my Project I have done 90% development using XCode 4.2 (was only need to support 4.x,5.x), Now I need to Build for iOS 6 as well, so I switched to Xcode 4.5 & iOS 6. But I am facing lots of issues like framework error for "Sqlite3", "MobileCoreServices"

I have read below Thread but no success.

How to make Xcode 4.5 project work on previous version of Xcode?

Xcode linker Directory not found for option

Can anyone please tell me How can I compile "Sqlite3", "MobileCoreServices" frame work for ARMV7 & ARMV7S. I cant remove both from project, Since I have done almost :(

like image 715
Mangesh Avatar asked Apr 13 '13 09:04

Mangesh


2 Answers

There are uncertainties for the exact reason behind this but your problem can be solved by any of the cases provided below.

Case 1 :

It may be due to any missing library like libsqlite3.dylib and libsqlite3.0.dylib or MobileCoreServices, so copy these files from any other computer and place these files in your computer.

Procedure:

1:Open xcode on the computer where these files exists, add libsqlite3.0.dylib in your project from link binary with libraries. 2: Right click on the libsqlite3.0.dylib and show in finder (same for MobileCoreServices). 3: Copy two files libsqlite3.0.dylib and libsqlite3.dylib and place on the same location on other computer where these files are missing.

Here you go, The problem may be solved in this way.

Case 2: Reinstall XCode again it may work properly

Case 3: Check this answer

Hope it helps you.

like image 81
Nishant Tyagi Avatar answered Oct 20 '22 03:10

Nishant Tyagi


When click on your project in the project explorer, for each target, select that target. Then in the build phase, in the link with binary libraries, check your framework links.

If you have simple problem, you can remove and add the libraries again.

If the library is not built for arm7s, then goto target's archtecture, in the valid architectures, set it armv7 only. See if this remove the problem. if it is, then the frameworks needs to be build for armv7s.

like image 2
karim Avatar answered Oct 20 '22 03:10

karim