5分钟掌握iOS打包脚本

实现的功能

  1. 自动识别单项目工程和Workspace工程
  2. 指定版本号打包
  3. 动态指定签名(可能会失败)

1. 替换Xcode中的PackageApplication

做这个动作主要是因为在编译的过程中很容易出现ResourceRules.plist导致的错误,所以干脆从源头避免这个错误的产生。

PackageApplicationPath="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/PackageApplication"
if [[ ! -f "${PackageApplicationPath}_backup" ]]; then
    cp $PackageApplicationPath ${PackageApplicationPath}_backup
    cp PackageApplication $PackageApplicationPath
fi

其实很简单,只要在原始PackageApplication中搜索@codesign_args,找到下面这段脚本

my @codesign_args = ("/usr/bin/codesign", "--force", "--preserve-metadata=identifier,entitlements,resource-rules",
                      "--sign", $opt{sign},
                      "--resource-rules=$destApp/ResourceRules.plist");

替换成

my @codesign_args;
if (-e '$destApp/ResourceRules.plist') {  # If ResourceRules.plist exists, include it in codesign arguments, for backwards compatability
    @codesign_args = ("/usr/bin/codesign", "--force", "--preserve-metadata=identifier,entitlements,resource-rules",
                      "--sign", $opt{sign},
                      "--resource-rules=$destApp/ResourceRules.plist");
} else { # If ResourceRules.plist isn't found, don't include it in the codesign arguments
    @codesign_args = ("/usr/bin/codesign", "--force", "--preserve-metadata=identifier,entitlements",
                          "--sign", $opt{sign});
}

即可,相信大家看到脚本后就会发现是怎么回事。
要注意代码的缩进,不正确可能导致找不到PackageApplication的错误。

重要说明:
如果是要打包AppStore版本,还要将这个改回来,否则苹果会认为这个ipa包不合法。

2. 定义一些变量,用于默认设置,具体情况还得看项目

PlistBuddy=/usr/libexec/PlistBuddy

ProjectName="YourName"
ProjectRootDir=$(PWD -P)
Configuration="Release"
# build输出目录
TargetBuildDir="$ProjectRootDir/build"
# 工程的Info.plist文件路径,可能在多个targets中需要修改
PlistFilePath="$ProjectRootDir/$ProjectName/Info.plist"
VersionString=$($PlistBuddy -c "Print CFBundleVersion" $PlistFilePath)
ShortVersionString=$($PlistBuddy -c "Print CFBundleShortVersionString" $PlistFilePath)
# 打包的ipa路径
IPAFilePath="$ProjectRootDir/ipa"
# ipa文件名
IPAFileName="$ProjectName-$VersionString.ipa"
# 描述文件路径,用于签名
ProvisionProfileFilePath="$IPAFilePath/xxx.mobileprovision"

3. 参数解析

执行脚本时,可以指定参数,目前支持2个参数,版本号和Configuration

# 参数1:版本号
if [ x$1 != x ]; then
    echo_tip "ready to update version from $VersionString to $1"
    echo_tip "$PlistBuddy -c \"Set:CFBundleVersion $1\" \"$PlistFilePath\""
    $PlistBuddy -c "Set:CFBundleVersion $1" "$PlistFilePath"

    ShortVersionString=$(echo $1 | cut -d "." -f1-3)
    $PlistBuddy -c "Set:CFBundleShortVersionString $ShortVersionString" "$PlistFilePath"

    VersionString=$($PlistBuddy -c "Print CFBundleVersion" $PlistFilePath)
    ShortVersionString=$($PlistBuddy -c "Print CFBundleShortVersionString" $PlistFilePath)
    echo_tip "after update, version = $VersionString, short version string = $ShortVersionString"

    IPAFileName="$ProjectName-$VersionString.ipa"
fi

# 参数2:编译配置
if [ x$2 != x ]; then
    echo_tip "set configuration = $2"
    Configuration=$2
fi

4. 解析指定的描述文件

TempPlistFilePath="$IPAFilePath/temp.plist"
if [[ -f "$TempPlistFilePath" ]]; then
        rm $TempPlistFilePath
fi

security cms -D -i $ProvisionProfileFilePath > $TempPlistFilePath
IdentityString=`/usr/libexec/PlistBuddy -c 'Print DeveloperCertificates:0' $TempPlistFilePath | \
                openssl x509 -subject -inform der|head -n 1`
CodeSignIdentity=`echo "$IdentityString" | cut -d "/" -f3 | cut -d "=" -f2`
UUID=`/usr/libexec/PlistBuddy -c "Print UUID" $TempPlistFilePath`

rm $TempPlistFilePath

这里感谢 @YoXung 提供的方法

5. 清理工程

/usr/bin/xcodebuild clean -configuration $Configuration

6. 编译工程

mkdir -p $TargetBuildDir

# 拷贝静态库到Build目录:
for path in `find "$ProjectRootDir" -name "*.a"`; do
    echo_tip "    cp $path $TargetBuildDir"
    cp $path $TargetBuildDir
done

if [[ -d "$ProjectRootDir/$ProjectName.xcworkspace" ]]; then
    /usr/bin/xcodebuild \
        -workspace $ProjectName.xcworkspace \
        -scheme $ProjectName \
        -configuration $Configuration \
        -sdk iphoneos \
        OBJROOT=$TargetBuildDir \
        TARGET_BUILD_DIR=$TargetBuildDir \
        LIBRARY_SEARCH_PATHS=$TargetBuildDir \
        CODE_SIGN_IDENTITY="$CodeSignIdentity" \
        PROVISIONING_PROFILE="$UUID"
else
    /usr/bin/xcodebuild \
        -target $ProjectName \
        -configuration $Configuration \
        -sdk iphoneos \
        OBJROOT=$TargetBuildDir \
        TARGET_BUILD_DIR=$TargetBuildDir \
        LIBRARY_SEARCH_PATHS=$TargetBuildDir \
        CODE_SIGN_IDENTITY="$CodeSignIdentity" \
        PROVISIONING_PROFILE="$UUID"
fi

ReturnCode=$(echo $?)
if ([[ $ReturnCode == "0" ]] && [[ -d "$TargetBuildDir/$ProjectName.app" ]]); then
    echo_tip "编译成功!"
else
    echo_error "编译失败,请修改后重试!"
    exit 1
fi

这里需要注意一下:
如果脚本提示下面错误

Check dependencies
Code Sign error: No codesigning identities found: No codesigning identities 
(i.e. certificate and private key pairs) that match the provisioning profile 
specified in your build settings (“xxxxx”) were found.

则需要把编译命令中的CODE_SIGN_IDENTITYPROVISIONING_PROFILE选项去掉,然后你要正确设置工程中的证书和描述文件,否则打出来的包会安装不上。

7. 打包

# 删除已有的ipa包
if [[ -f "$IPAFilePath/$IPAFileName" ]]; then
    rm -f "$IPAFilePath/$IPAFileName"
fi

/usr/bin/xcrun -sdk iphoneos \
    PackageApplication \
        -v $TargetBuildDir/$ProjectName.app \
        -o $IPAFilePath/$IPAFileName \
        --sign "$CodeSignIdentity" \
        --embed "$ProvisionProfileFilePath"

if [[ -f "$IPAFilePath/$IPAFileName" ]]; then
    echo_tip "打包成功!"
else
    echo_error "打包失败,请修改后重试!"
    exit 1
fi

如果一切顺利,ipa包应该就在你设置的目录下面了!

8. 最后附上完成的脚本:

#!/bin/sh

PlistBuddy=/usr/libexec/PlistBuddy

function echo_tip() {
    echo "\033[36;49m$1\033[0m"
}
function echo_error() {
    echo "\033[31;49m$1\033[0m"
}


# if [[ "$1"x != "x" ]]; then
#     project_root_path=$1
# fi

project_root_path=$(PWD -P)
project_name=""
project_type=""
scheme=""
info_plist_file_path=""
ipa_file_name=""
code_sign=""
uuid=""

ipa_file_path="$project_root_path/ipa"
configuration="Release"
provision_profile_path="$ipa_file_path/ZXIPTV_InHouse.mobileprovision"
build_path="$project_root_path/build"

# 获取工程名称 1: 单个工程, 2: 工作空间
function get_project_info() {
    cd $1
    workspace=`ls . | grep "xcworkspace$"`
    if [[ x"$workspace" != "x" ]]; then
        project_name=`echo $workspace | cut -d "." -f1`
        project_type="2"
        return "0"
    else
        project=`ls . | grep "xcodeproj$"`
        if [[ x"$project" != "x" ]]; then
            project_name=`echo $project | cut -d "." -f1`
            project_type="1"
            return "0"
        fi
    fi

    echo_error "目录不是一个有效的工程目录"
    exit 1
}

# 校验scheme是否正确
function validate_scheme() {
    info=`xcodebuild -list`
    schemes=${info#*Schemes:}
    for item in $schemes; do
        if [[ "$1"x == "$item"x ]]; then
            return "0"
        fi
    done

    echo "$1 is not in [$schemes]"
    exit 1
}

function validate_configuration() {
    info=`xcodebuild -list`
    configurations=${info#*Configurations:}
    configurations=${configurations%If*}
    for item in $configurations; do
        if [[ "$1"x == "$item"x ]]; then
            return "0"
        fi
    done
    exit 1
}

# 获取指定target对应的info.plist文件名称, 参数为scheme值
function get_info_plist_file_path() {
    settings=`xcodebuild -showBuildSettings -scheme $1`
    str1=${settings#*PRODUCT_SETTINGS_PATH = }
    path=${str1%%.plist*}
    info_plist_file_path=$path".plist"
}

# 解析provision profile, 参数为描述文件路径
function parse_provision_profile() {
    temp_plist_path="$ipa_file_path/temp.plist"
    if [[ -f "$temp_plist_path" ]]; then
            rm $temp_plist_path
    fi

    security cms -D -i $1 > $temp_plist_path
    code_sign_identity=`$PlistBuddy -c 'Print DeveloperCertificates:0' $temp_plist_path | \
                        openssl x509 -subject -inform der|head -n 1`
    code_sign=`echo "$code_sign_identity" | cut -d "/" -f3 | cut -d "=" -f2`
    uuid=`$PlistBuddy -c "Print UUID" $temp_plist_path`

    rm $temp_plist_path

    if [[ $code_sign == "" || $uuid == "" ]]; then
        echo_error "无法解析描述文件[$provision_profile_path]"
        exit 1
    fi
}

# 设置版本号, 参数1为version, 参数2为plist文件路径
function update_version() {
    old_version=$($PlistBuddy -c "Print CFBundleVersion" $2)
    old_short_version=$($PlistBuddy -c "Print CFBundleShortVersionString" $2)
    echo_tip "before update, version = $old_version, short version = $old_short_version"

    short_version=$(echo $1 | cut -d "." -f 1-3)
    $PlistBuddy -c "Set:CFBundleVersion $1" "$2"
    $PlistBuddy -c "Set:CFBundleShortVersionString $short_version" "$2"
    new_version=$($PlistBuddy -c "Print CFBundleVersion" $2)
    new_short_version=$($PlistBuddy -c "Print CFBundleShortVersionString" $2)
    echo_tip "after update, version = $new_version, short version = $new_short_version"
    
    return "0"
}

#=====================================================================================

get_project_info "$project_root_path"
parse_provision_profile "$provision_profile_path"

scheme=$project_name
validate_scheme "$scheme"
validate_configuration "$configuration"
get_info_plist_file_path "$scheme"

version=`$PlistBuddy -c "Print CFBundleVersion" "$info_plist_file_path"`
if [[ "$1"x != "x" ]]; then
    version=$1
    update_version "$version" "$info_plist_file_path"
fi

ipa_file_name="$project_name-$version.ipa"

echo_tip "project_root_path = $project_root_path"
echo_tip "project_name = $project_name"
echo_tip "scheme = $scheme"
echo_tip "info_plist_file_path = $info_plist_file_path"
echo_tip "version = $version"
echo_tip "ipa_file_name = $ipa_file_name"
echo_tip "ipa_file_path = $ipa_file_path"
echo_tip "code_sign = $code_sign"
echo_tip "uuid = $uuid"

#=====================================================================================

function prepare_build() {
    rm -rf $build_path
    mkdir -p $build_path
    mkdir -p $ipa_file_path

    for path in `find "$project_root_path" -name "*.a"`; do
        cp $path $build_path
    done
}

function build() {
    if [[ "$project_type" == "1" ]]; then
        /usr/bin/xcodebuild \
            -target $scheme  \
            -configuration $configuration -sdk iphoneos \
            OBJROOT=$build_path TARGET_BUILD_DIR=$build_path LIBRARY_SEARCH_PATHS=$build_path \
            CODE_SIGN_IDENTITY="$code_sign" PROVISIONING_PROFILE="$uuid"
    else
        /usr/bin/xcodebuild \
            -workspace $project_name.xcworkspace -scheme $scheme \
            -configuration $configuration -sdk iphoneos \
            OBJROOT=$build_path TARGET_BUILD_DIR=$build_path LIBRARY_SEARCH_PATHS=$build_path \
            CODE_SIGN_IDENTITY="$code_sign" PROVISIONING_PROFILE="$uuid"
    fi

    ReturnCode=$(echo $?)
    if ([[ $ReturnCode == "0" ]] && [[ -d "$build_path/$project_name.app" ]]); then
        echo_tip "编译成功!"
    else
        echo_error "编译失败,请修改后重试!"
        exit 1
    fi
}

function package() {
    # 删除旧的ipa文件
    if [[ -f "$ipa_file_path/$ipa_file_name" ]]; then
        rm -f "$ipa_file_path/$ipa_file_name"
    fi

    /usr/bin/xcrun -sdk iphoneos \
        PackageApplication \
            -v $build_path/$project_name.app \
            -o $ipa_file_path/$ipa_file_name \
            --sign "$code_sign" \
            --embed "$provision_profile_path"

    rm -rf $TargetBuildDir

    if [[ -f "$ipa_file_path/$ipa_file_name" ]]; then
        echo_tip "打包成功!"
    else
        echo_error "打包失败,请修改后重试!"
        exit 1
    fi
}

prepare_build
build
package

如果有任何问题,请联系我!

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 207,248评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,681评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 153,443评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,475评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,458评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,185评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,451评论 3 401
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,112评论 0 261
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,609评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,083评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,163评论 1 334
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,803评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,357评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,357评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,590评论 1 261
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,636评论 2 355
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,925评论 2 344

推荐阅读更多精彩内容