码迷,mamicode.com
首页 > Web开发 > 详细

http://www.alexwhittemore.com/iphone/gen_entitlements.txt内容

时间:2014-12-10 22:35:46      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:des   http   io   ar   os   for   on   as   tt   

#!/usr/bin/env python

import sys
import struct

if len(sys.argv) != 3:
	print "Usage: %s appname dest_file.xcent" % sys.argv[0]
	sys.exit(-1)

APPNAME = sys.argv[1]
DEST = sys.argv[2]

if not DEST.endswith(‘.xml‘) and not DEST.endswith(‘.xcent‘):
	print "Dest must be .xml (for ldid) or .xcent (for codesign)"
	sys.exit(-1)

entitlements = """
<?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>application-identifier</key>
    <string>%s</string>
    <key>get-task-allow</key>
    <true/>
</dict>
</plist>
""" % APPNAME

f = open(DEST,‘w‘)
if DEST.endswith(‘.xcent‘):
	f.write("\xfa\xde\x71\x71")
	f.write(struct.pack(‘>L‘, len(entitlements) + 8))
f.write(entitlements)
f.close()

http://www.alexwhittemore.com/iphone/gen_entitlements.txt内容

标签:des   http   io   ar   os   for   on   as   tt   

原文地址:http://www.cnblogs.com/cqchen/p/4156442.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!