iPhone problem while updating app to 3.0 - iphone

I have recently updated my xcode and installed iphone sdk 3.0 GM Seed. I am trying to build my 2.2.1-application in 3.0, but I get a bunch of errors - mostly permission denied-errors. Here is one of them:
Unable to write to file
/Users/hansespenskorpen/jobb/rac/build/rac.build/Debug-iphonesimulator/rac.build/Objects-normal/i386/rac.LinkFileList
(You do not have appropriate access
privileges to save file
“rac.LinkFileList” in folder “i386”.)
Does anyone else experienced the same problem?
Thanks in advance, Hans Espen

Try cleaning the build first.

Related

Xcode 6.3.2 The application does not have a valid signature

I have tried every related thread and did all the suggested steps:
Remove All provisioning profiles
Create new app id
But I still get
App Installation Failed, The application does not have a valid
signature
error when installing app on iPhone 6 iOS 8.3
This app was installing fine on this phone yesterday before I installed Parse & Facebook frameworks. Also other apps still install fine on this phone.
Just for anyone else having this issue. I tried every possible solution and ended up creating a new blank project and copy pasted my assets to make it work.
I removed Embedded Binaries.
And #import <ParseFacebookUtilsV4/PFFacebookUtils.h> is now only in bridging header and not imported in any swift files.
While FBSDKCoreKit in not imported in bridging header but instead imported in every swift file it is needed.
Hope this helps someone!!
On xcode 8, I've fixed it by editing a line in the code (adding and then deleting a character anywhere in the code). Seems to be a Xcode 8 bug...
I was with the same problem.
I installed the last update of OS X and my problem was fixed!
I hope that it can help you or someone!
My Xcode version: 7.3, using Swift and Facebook SDK.
In my case using Xcode 8.1, I was able to fix this by deleting the app from my device, unplugging it from Xcode, and plugging it back in.

FBDialog.bundle no such file or directory (ShareKit 2.0)

I'm using Sharekit 2.0 in my app but when I build app this error cames. I'm not getting what they are saying I tried my best to solve this from different questions but was not able.
error: /Users/shaheen.r/Downloads/ShareKit-ShareKit-bd8932b 3/Classes/ShareKit/Sharers/Services/Facebook/../../../../../Submodules/facebook-ios-sdk/src/FBDialog.bundle:
No such file or directory
The old version of Sharekit is also producing error and not working. How to solve this problem?
# Shaheen Rehman ok i understand your problem i have a share kit sample code working with out errors in xcode 4.3.3 with ios 5.1. If you need you can download from here. If you get any doubt ask me again

iPhone: Xcode 4.2 and iOS 5 SDK installation failure

I want to update my Xcode with iOS 5 SDK. I have a snow leopard macbook. I have download the sdk file from the Apple link using my active and correct Apple registered login credentials.
https://developer.apple.com/devcenter/download.action?path=/Developer_Tools/xcode_4.2_with_ios_5_sdk/xcode_4.2_and_ios_5_sdk_for_snow_leopard.dmg
Its downloading a 1.64 GB .dmg file finally. But, every time when i tried to installed, it says, "The following disk image couldn't be opened, ode_4.2_and_ios_5_sdk_for_snow_leopard.dmg not recognized"
I tried more than 10 times, all the times it is same. I'm using my very active and proper Apple registered account.
Looks like there are many people facing the same issue recently.
How can i update my SDK to 5.0? Please share your ideas and give me if you find any direct SDK links from somewhere else?
Thank you!
1.64GB seems pretty little... I think it should be around 4GB... your download must have got broken, unfortunately...
It seems to me that you have a corrupt file. The download must have failed. Try to download using a download manager like iGetter.
Using my own account I found the following link:
http://adcdownload.apple.com//Developer_Tools/xcode_4.2_with_ios_5_sdk/xcode_4.2_and_ios_5_sdk_for_snow_leopard.dmg
See if that works better.

iPhone build issue : MapKit/MKPolyline.h: No such file or directory

I am trying to build the old SDK version based application in the new xcode. I have got the MapKit/MKPolyline.h: No such file or directory issue, the same issue is noticed for most of objective-c classes available under Mapkit.
Please help me resolve this issue.
Thanks.
May be there is no compatible framework in your new xcode framework path.
Please go through this link,may be helpful for you.

targeting iPhoneOS 2.2.1

I don't believe that I am using any 3.0 specific APIs, but somehow whenever I compile I get a warning "This project uses features only available in iPhone SDK 3.0 and later", and then a bunch of errors. If I change the Base SDK to 3.0, the warning & errors go away, but then of course I cannot target OS 2.2.1
I see that this is coming from the project_Prefix.pch file, which I assume was created when the XCode initially created the project. I don't see how this file gets included, but I believe this is the source of the problem. I tried removing it, but then the build won't compile at all.
Do I need to regenerate this file somehow?
Silly me- I was in fact using a 3.0 API. I had the following:
controller.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
Removing this line fixed the problem.
I don't believe the project_Prefix.pch is the file, but if you want to regenerated it just delete it or better yet do a clean on your project.
What are the errors you are getting? That should tell you which 3.0 specific API you are using.