Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The Copy Bundle Resources build phase contains this target's Info.plist file 'Info.plist' in xcode 6?

I am getting this warning The Copy Bundle Resources build phase contains this target's Info.plist file 'Info.plist'.I have read the solution here It says that Info.plist file has been copied into copy bundle resources & i have to remove it from there.But i don't find any Info.plist.Please suggest what to do?

like image 764
TechChain Avatar asked Jul 17 '15 12:07

TechChain


People also ask

Does the bundle contain an info plist?

plist does not contain a CFBundleVersion (Bundle version) key or a CFBundleShortVersionString (Bundle versions string, short) key.

What is copy bundle resources Xcode?

Copy Bundle Resources - Copies files that support your source code into internal structure. If you want to make sure the files you added will get copied to the application bundle. It is useful, when you are creating an app where you can add images and other resources.

How to Remove from Copy Bundle Resources?

To resolve this warning, select your Info. plist from the Copy Bundle Resource build phase as shown in Figure 1, then click the Remove (–) button to delete it from the phase.


1 Answers

https://developer.apple.com/library/ios/qa/qa1649/_index.html

The Apple documentation says you just remove the info.plist file from the following phase.

  1. Click the target of project
  2. Select the item of Build Phase
  3. Then select the item of Copy Bundle Resources
  4. Final remove this file from you selected file

Clear the project and rebuild it.

like image 103
Johnny Avatar answered Sep 28 '22 09:09

Johnny