App installation failed Could not inspect the application package.解决方法

Procuct Name 设置中文导致真机调试出现

App installation failed Could not inspect the application package.解决方法 

一、桌面显示名:

修改plist里面的bundle display name即可

二、可执行文件名:

  1. 修改plist里面的executable name
  2. Edit Active Target –> Build –> Packaging –> Procuct Name

这方法经试验,改倒是能改,但是没法调试了,每次都弹出一个错误


(1)、在InfoPlish.strings(english)文件中加入;

CFBundleDisplayName ="localizable";

其中“ localizable”为英文应用程序名称.

(2)、同理在InfoPlish.strings(chinese)文件中加入:

CFBundleDisplayName ="本地化";

其中“本地化”为中文名称,

注意:CFBundleDisplayName加不加双引号都行  xcode6 必须加


你可能感兴趣的:(ios)