Mac10.6操作系统下怎样将xcoder开发的程序打包为ipa安装到iphone OS3.13上?(免证书真机联调)(还可加分)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac10.6操作系统下怎样将xcoder开发的程序打包为ipa安装到iphone OS3.13上?(免证书真机联调)(还可加分)相关的知识,希望对你有一定的参考价值。

如题。请教苹果开发的各位大侠。
本人只是自己学习而已,没有必要花99$买一个证书。

系统:
MAC OS 10.6版雪豹Snow Leopard

xcode版本:
3.1.3

iphone SDK版本:
3.1.3 (已破解)

可以加到300分
@1楼:我已经在官方网站注册了一个developer帐号。

@2楼:请问XXX.app从哪来?现在的问题是我没有证书根本都生成不了XXX.app。

==========================虽然没有满意答案,还是非常感谢大家,把分给二楼吧===========

1. 新建一个目录 $appname
2. 新建文件夹 Payload和文件iTunesArtwork (注意大小写,iTunesArtwork由图标文件改名得到)
3. 包XXX.app文件夹内容放到Payload下,我一般连上真机,winscp下载 (/var/mobile/applications下)
4. 修改XXX.app下的Info.plist,现在的Info.plist一般都是二进制文件了。可以用专门的工具(叫做pledit)修改。其实自己建一个文本格式的文件也能正常工作。格式见附录。
5. 将$appname里的内容,用winrar压缩,选择zip格式,后缀名直接改为.ipa即可。
6. 可以用iTunes同步到真机了。注意真机必须做一下同步非appstore ipa的破解。
附:Info.plist格式
<?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></key>
<string></string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>Weibolu</string>
<key>CFBundleExecutable</key>
<string>Weibolu</string>
<key>CFBundleIdentifier</key>
<string>com.yourcompany.Weibolu</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Weibolu</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleResourceSpecification</key>
<string>ResourceRules.plist</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0.1</string>
<key>DTPlatformName</key>
<string>iphoneos</string>
<key>DTSDKName</key>
<string>iphoneos2.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>MinimumOSVersion</key>
<string>2.0</string>
<key>NSMainNibFile</key>
<string>MainWindow</string>
<key>SignerIdentity</key>
<string>Apple iPhone OS Application Signing</string>
</dict>
</plist>
别的不太重要,粗体部分的是<key>SignerIdentity</key>
<string>Apple iPhone OS Application Signing</string>必须的。
---------------------------------------------------------
其实,直接用iTunes, 菜单文件->添加到资料库, 选中你编译好的APP, iTunes会自动帮你转换成ipa的
参考技术A 1. 新建一个目录 $appname
2. 新建文件夹 Payload和文件iTunesArtwork (注意大小写,iTunesArtwork由图标文件改名得到)
3. 包XXX.app文件夹内容放到Payload下,我一般连上真机,winscp下载 (/var/mobile/applications下)
4. 修改XXX.app下的Info.plist,现在的Info.plist一般都是二进制文件了。可以用专门的工具(叫做pledit)修改。其实自己建一个文本格式的文件也能正常工作。格式见附录。
5. 将$appname里的内容,用winrar压缩,选择zip格式,后缀名直接改为.ipa即可。
6. 可以用iTunes同步到真机了。注意真机必须做一下同步非appstore ipa的破解。
附:Info.plist格式
<?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></key>
<string></string>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleDisplayName</key>
<string>Weibolu</string>
<key>CFBundleExecutable</key>
<string>Weibolu</string>
<key>CFBundleIdentifier</key>
<string>com.yourcompany.Weibolu</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>Weibolu</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleResourceSpecification</key>
<string>ResourceRules.plist</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0.1</string>
<key>DTPlatformName</key>
<string>iphoneos</string>
<key>DTSDKName</key>
<string>iphoneos2.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>MinimumOSVersion</key>
<string>2.0</string>
<key>NSMainNibFile</key>
<string>MainWindow</string>
<key>SignerIdentity</key>
<string>Apple iPhone OS Application Signing</string>
</dict>
</plist>
别的不太重要,粗体部分的是<key>SignerIdentity</key>
<string>Apple iPhone OS Application Signing</string>必须的。
---------------------------------------------------------
其实,直接用iTunes, 菜单文件->添加到资料库, 选中你编译好的APP, iTunes会自动帮你转换成ipa的
参考技术B 先去淘宝上开通自己帐户的开发者帐户再说吧。 参考技术C 33qs111版本

在Mac OSX下设置前端开发环境

技术分享

以下内容将会详细介绍本人在MAC OSX下关于前端开发环境的安装和设置,如果您是前端开发人员,并且手上有个全新的或者重新安装过系统的mac,你可能会在以下内容里发现你所需要的东西。

Google Chrome

几乎是每个前端开发者必备的浏览器,下载地址:

一些常用到得Chrome插件:

iTerm2

MAC OSC下最好的terminal app,没有之一

 

两个我常用的主题

 

字体

我在用 `12pt Monaco`.

 

Homebrew

就像它的官网说的,它是MAC OSX下失传已久的包管理器

安装

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

 

常用命令

  • Update homebrew‘s directory of formulas: `brew update`
  • Update a package: `brew upgrate <package name>`
  • Install a package: `brew install <package name>`
  • Link/unlink a package: `brew link/unlink <package name>`

 

Oh My Zsh

Terminal里bash的最佳替代品,强大的自动补全功能,能自动补全命令、参数、文件名、进程、用户名、变量、权限符等, 以及各种插件以及主题的支持。

安装

$ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

设置

设置文件的路径为 `~/.zshrc`, 你可以在下面地址找到我的设置文件random-notes/.zshrc at master · haochuan/random-notes · GitHub

Vim

非vim党请跳过此段。

安装

尽管vim在MAC OSX里是内置的,但是为了安装一些强大的插件,你需要下载安装最新版本。

brew install vim
brew link vim

设置: spf13-vim

[spf13-vim](spf13/spf13-vim · GitHub) 是一个vim的集成开发环境,内置集成很多常用的插件。

  • Vundle
  • NERDTree
  • Neocomplcache
  • Syntastic
  • Fugitive
  • Tagbar

 

安装 (要求有git)

curl https://j.mp/spf13-vim3 -L > spf13-vim.sh && sh spf13-vim.sh

 

Sublime Text 3

请在这里下载Sublime Text.

Package Control

首先安装 [package control](Package Control):

import urllib.request,os,hashlib; h = ‘2915d1851351e5ee549c20394736b442‘ + ‘8bc59f460fa1548d1514676163dafc88‘; pf = ‘Package Control.sublime-package‘; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( ‘Package Control‘ + pf.replace(‘ ‘, ‘%20‘)).read(); dh = hashlib.sha256(by).hexdigest(); print(‘Error validating download (got %s instead of %s), please try manual install‘ % (dh, h)) if dh != h else open(os.path.join( ipp, pf), ‘wb‘ ).write(by)

 

一些常用的包

General


Front End

Other

Theme and Color

 

怎样用dropbox来同步不同机器里的sublime text设置

 

第一台机器

cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
mkdir ~/Dropbox/Sublime
mv User ~/Dropbox/Sublime/
ln -s ~/Dropbox/Sublime/User

 

其他机器

cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/
rm -r User
ln -s ~/Dropbox/Sublime/User

 

开发工具

[git](Git)

brew install git

 

[Node.js and Npm](Node.js)

可以直接在官网下载安装包,或者:

brew install node

 

[SASS](Sass: Syntactically Awesome Style Sheets)

gem install sass

 

[Nodemon](remy/nodemon · GitHub) and [pm2](Unitech/pm2 · GitHub)

Node开发和部署工具

npm install nodemon -g
npm install pm2 -g

 

[Grunt](), [gulp](gulp.js - the streaming build system), and [webpack](webpack module bundler)

npm install -g grunt-cli
npm install -g gulp
npm install -g webpack

 

[jshint](JSHint, a JavaScript Code Quality Tool)

npm install -g jshint

 

[MongoDB](MongoDB for GIANT Ideas)

brew update
brew install mongo

 

Mac OSX 应用

- [Dropbox]()

- 文件同步

- [Alfred 2](Alfred - Productivity App for Mac OS X)

- 效率利器

- [Bartender 2]()

- MAC OSC顶部菜单管理

- [SizeUp]()

- 快速调整窗口位置和大小

- [iStat Menus]()

- 监控电脑cpu,ram,network,温度

-----

目前只能想起这么多了,之后会随时更新

附上一些个人觉得有趣好用的东西

 

[node-notifier]()

A Node.js module for sending notifications on native Mac, Windows and Linux (or Growl as fallback)

 

[z]()

Tracks your most used directories, based on ‘frecency‘. After a short learning phase, z will take you to the most ‘frecent‘ directory that matches ALL of the regexes given on the command line, in order. For example, z foo bar would match /foo/bar but not /bar/foo.

[quill]()
  • Fast and lightweight rich text editor
  • Semantic markup
  • Standardized HTML between browsers
  • Cross browser support including Chrome, Firefox, Safari, and IE 9+

 

[impress.js]()

It‘s a presentation framework based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com.

[mousetrap]()

Simple library for handling keyboard shortcuts in Javascript

[jsdoc]()

An API documentation generator for JavaScript

[Moment.js]()

Parse, validate, manipulate, and display dates in JavaScript.

[Ghost]()

Ghost is a simple, powerful publishing platform that allows you to share your stories with the world.

[Faker]()

A library for generating fake data such as names, addresses, and phone numbers.

[GitBook]()

Modern book format and toolchain using Git and Markdown

 

[bluebird]()

Bluebird is a full featured promise library with unmatched performance.

[tldr]()

tldr is a collection of simplified and community-driven man pages.

[is.js]()

Micro check library

 

 

 

转自:http://zhuanlan.zhihu.com/haochuan/20481407?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io

以上是关于Mac10.6操作系统下怎样将xcoder开发的程序打包为ipa安装到iphone OS3.13上?(免证书真机联调)(还可加分)的主要内容,如果未能解决你的问题,请参考以下文章

Python 导入 MySQLdb 错误 - Mac 10.6

linux系统环境下,怎样在后台才能获取到mac地址?

在 10.6 (Snow Leopard) 之后以编程方式设置 Mac OS X 音量

在 Mac OSX 10.6 中将新行附加到 etc/hosts 和 Apache httpd-vhosts.conf 的 Shell 脚本

iCarousel 类不适用于 xcode 4.2 和 mac os 10.6 上的 ARC

在Mac OS X 10.6上的Python中,无法在Matplotlib中将字体更改为Helvetica