iOS项目冗余资源扫描脚本

  随着iOS项目的版本不断迭代,app中冗余文件会越来越多,app size也持续增加,是时候需要对app冗余资源进行检测,对app进行瘦身。

使用方法:

1. 运行环境为mac, 首先准备好工程源代码;

2. 新建check.sh,将下面的代码粘贴到check.sh中并且保存;(可将txt文件改成sh后缀)

#!/bin/sh

##### several cases that the scripts does not work:

##### 1) there is space or slash in the resources file, such as "aaa .png" 资源文件名中含有空格或者/

##### 2) reference resources in commented code 资源引用代码被注释了

##### 3) you need to manually checked the resources one by one in the result 对于脚本检查结果,最好人工检查一遍

##### 4) you can add some other types more than png, jpg, gif, wav, m4a 如果需要检查其他资源,请自行修改脚本;

##### 5)默认文件后缀都是如@2x.png格式,如果后缀格式不同,请自行修改脚本;

#### set parameters:PrjPath为项目工程所在目录,包含.m .xib文件;ResPath为被扫描的资源文件目录,包含.png .wav

#### xcodeprojPath为工程xcodeproj位置

PrjPath=/Users/webersongao/WorkProject/Doumao_iOS

ResPath=/Users/webersongao/WorkProject/Doumao_iOS/Doumao/Assets.xcassets

xcodeprojPath=/Users/webersongao/WorkProject/Doumao_iOS/DouMao.xcodeproj

if [ -f ~/Desktop/Not_Used_resource_san_result.txt ];then

    rm -f ~/Desktop/Not_Used_resource_san_result.txt

fi

cd $PrjPath

files=$(find . -name "*.m" -o -name "*.xib" -o -name "*.mm" -o -name "*.plist")

cd $ResPath

for png in $(find . -name "*.png" -o -name "*.jpg" -o -name "*.gif" -o -name "*.wav" -o -name "*.m4a")

do

    basename='basename/'$png

    basename=${basename##*/}

    # echo $basename

    if [ "${basename##*.}" == "png" ];then

        echo $basename|grep -q @2x.png

        if [ $? -eq 0 ];then

            name=${basename%%@2x.png}

        else

            echo $basename|grep -q @3x.png

            if [ $? -eq 0 ];then

                name=${basename%%@3x.png}

            else

                name=${basename%.png}

            fi

        fi

    elif [ "${basename##*.}" == "jpg" ];then

        echo $basename|grep -q @2x.jpg

        if [ $? -eq 0 ];then

            name=${basename%%@2x.jpg}

        else

            echo $basename|grep -q @3x.jpg

            if [ $? -eq 0 ];then

                name=${basename%%@3x.jpg}

            else

                name=${basename%%.jpg}

            fi

        fi

    elif [ "${basename##*.}" == "gif" ];then

        echo $basename|grep -q @2x.gif

        if [ $? -eq 0 ];then

            name=${basename%%@2x.gif}

        else

            echo $basename|grep -q @3x.gif

            if [ $? -eq 0 ];then

                name=${basename%%@3x.gif}

            else

                name=${basename%%.gif}

            fi

        fi

    elif [ "${basename##*.}" == "wav" ];then

        name=${basename%%.wav}

    elif [ "${basename##*.}" == "m4a" ]; then

        name=${basename%%.m4a}

    else

        name=''

    fi

  if [ ${#name} -gt 0 ];then

        name=${name%%[0-9]*}

        cd $PrjPath

        if grep -q $name $files;then

            echo "$png" is used

            # echo "$png" is used >> ~/Desktop/Used_resource_san_result.txt

        else

            echo "$png" is used >> ~/Desktop/Not_Used_resource_san_result.txt

            # cd $xcodeprojPath

            # if grep -q $name project.pbxproj;then

            #    echo "$png" is not used >> ~/Desktop/resource_san_result.txt

            # else

            #    echo "$png" is not packaged

            # fi

        fi

    else

        echo name is empty

    fi

done

if [ -f ~/Desktop/Not_Used_resource_san_result.txt ]; then

    echo ***************the end of scan. Please see result from resource_san_result.txt

else

    echo ***************the end of scan, everything is OK

fi

3. 设置脚本中参数:

PrjPath为项目工程所在目录,包含.m .xib文件;

ResPath为被扫描的资源文件目录,包含.png .wav;

xcodeprojPath为工程xcodeproj位置;

例如:

PrjPath=/Users/zhuquan/Documents/secret-develop/Project

ResPath=/Users/zhuquan/Documents/secret-develop/Project/Phoenix/Res

xcodeprojPath=/Users/zhuquan/Documents/secret-develop/Project/Phoenix.xcodeproj


4. 执行脚本check.sh;

5. 最后会出检测结果,检测出来的冗余资源最好人工检查一遍。

WebersonGaodeiMac:~ webersongao$ /Users/webersongao/Desktop/check.sh 

./CloudLibrary/disk_transferProgress_high.imageset/disk_transferProgress_high@3x.png is ./CloudLibrary/disk_shujia_gouxuanbg.imageset/disk_shujia_gouxuanbg@2x.png is used

./CloudLibrary/disk_shujia_gouxuanbg.imageset/disk_shujia_gouxuanbg@3x.png is used

./CloudLibrary/disk_diskuse_info01.imageset/disk_diskuse_info01.png is used

./CloudLibrary/disk_diskuse_info00.imageset/disk_diskuse_info00.png is used

./运动记录.pngis not packaged***************the end of scan, everythingisO

使用总结:

脚本使用过程中有一些注意事项如下,

1. 如果资源文件名中含有空格或者/,比如”aaa .png”,该资源无法正常检测;

2. 如果资源文件在代码中被引用了,但是该引用代码被注释掉了,也无法成功检测;

3. 对于最终脚本输出的脚本检查结果,最好人工检查一遍,有些资源可能并非是冗余资源;

4. 目前脚本中支持的资源类型有.png .jpg .gif .wav .m4a,如果需要检查其他资源,请自行修改脚本。



原文地址:https://www.cnblogs.com/Boohee/p/5598313.html

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