您的位置:首页 > 其它

通过修改ipa文件包修改文件名的方法

2012-01-06 20:01 561 查看
用pledit.exe打开Info.plist文件,在最下方加入这两行语句

<key>UIRoleDisplayName</key> 
<string>修改的名字</string>

我的整个文件是这样的

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
	<key>CFBundleDevelopmentRegion</key>
	<string>English</string>
	<key>CFBundleDisplayName</key>
	<string>HSPA+</string>
	<key>CFBundleExecutable</key>
	<string>HSPA+</string>
	<key>CFBundleIconFile</key>
	<string>logo.png</string>
	<key>CFBundleIdentifier</key>
	<string>com.yourcompany.HSPA-</string>
	<key>CFBundleInfoDictionaryVersion</key>
	<string>6.0</string>
	<key>CFBundleName</key>
	<string>HSPA+</string>
	<key>CFBundlePackageType</key>
	<string>APPL</string>
	<key>CFBundleResourceSpecification</key>
	<string>ResourceRules.plist</string>
	<key>CFBundleSignature</key>
	<string>????</string>
	<key>CFBundleSupportedPlatforms</key>
	<array>
		<string>iPhoneOS</string>
	</array>
	<key>CFBundleVersion</key>
	<string>1.0</string>
	<key>DTCompiler</key>
	<string>4.2</string>
	<key>DTPlatformBuild</key>
	<string>8C134</string>
	<key>DTPlatformName</key>
	<string>iphoneos</string>
	<key>DTPlatformVersion</key>
	<string>4.2 Seed 2</string>
	<key>DTSDKName</key>
	<string>iphoneos4.2</string>
	<key>DTXcode</key>
	<string>0325</string>
	<key>DTXcodeBuild</key>
	<string>10M2423</string>
	<key>LSRequiresIPhoneOS</key>
	<true/>
	<key>MinimumOSVersion</key>
	<string>4.2</string>
	<key>NSMainNibFile</key>
	<string>MainWindow</string>
	<key>SignerIdentity</key>
	<string>Apple iPhone OS Application Signing</string>
	<key>UIApplicationExitsOnSuspend</key>
	<false/>
	<key>UIDeviceFamily</key>
	<array>
		<integer>1</integer>
	</array>
	<key>UIRoleDisplayName</key>
	<string>修改的名字</string>
</dict>
</plist>


CFBundleIdentifier的可以修改程序的ID
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: