Coding Cluster - using asp.net, c#, mvc 4, iphone, php, ios, javascript, in asp.net mvc 3 & more
 

Solution - Warning: The Copy Bundle Resources build phase contains this target's Info.plist file

Wednesday

iPhone Info.plist Warning - Solution:
                                             "WARNING: The Copy Bundle Resources build phase contains this target's Info.plist file 'Info.plist'."
 You are getting this warning because you probably added your Info.plist file to your Copy Bundle Resources build phase as shown in Figure


The INFOPLIST_FILE build setting specifies the name of the Info.plist associated with your target. When building a target, Xcode reads this build setting and copies the referenced Info.plist into your application bundle. Because Xcode automatically processes the Info.plist, you should not add it to your Copy Bundle Resources build phase or make it a target member.

To resolve this warning, select your Info.plist from the Copy Bundle Resource build phase as shown in Figure.

Source : https://developer.apple.com/library/ios/#qa/qa2009/qa1649.html


Solution - 'fileAttributesAtPath:traverseLink:' is deprecated - in iPhone SDK

iPhone - Resolve fileAttributesAtPath warning:
                                                       In one of my app I got a warning like " 'fileAttributesAtPath: traverseLink: ' is deprecated " from this line  "NSDictionary* attr = [[NSFileManager defaultManager] fileAttributesAtPath:file traverseLink:YES];". To fixe this issue use Use attributesOfItemAtPath:error: instead. That is...

 Solution:
 NSError* error;
 NSDictionary* attr = [[NSFileManager defaultManager] attributesOfItemAtPath:file error:&error];

I'm fixed my issue by this way.

Solution - Code Sign error: The identity 'iPhone Developer: XXXX' doesn't match any identity in any profile

Monday

Xcode: iPhone app code sign error -Solution:
                                                       "Code Sign error: The identity 'iPhone Developer: xxx' doesn't match any identity in any profile" I'm got this error while try to run my app into iPhone real devices. The reason for this error is,  we need to create or change(if the provisioning profiles exists) in the code design identity.
                                                  To  create new provisioning profiles based on your new certificate.Log on to developer.apple.com and go to the iOS Provisioning Portal -> Provisioning -> Development. Most likely, the profile you once created has expired, so just renew and redownload it.
To change the code design Identity...

1) Go to your app TARGET -> Build Settings

2) Then expand the Code Signing and Code Signing Identity

3) set the Any iOS SDK under Debug as iPhone Developer

4) set the Any iOS SDK under Release as iPhone Developer  (refer the screen shot)



I'm  resolved my problem by this way...

 
 
 

RECENT POSTS

Boost

 
Blogger Widgets