fir.im簡介
測試人員開啟一個短鏈,即可直接下載內測程式,
免費 App 託管平臺
fir.im 要幫開發者簡化內測過程
複製程式碼
現在工作流程
#一行命令就完成了原先開發需要做的工作
sh bu.sh "這個版本改了啥"
複製程式碼
原先工作流程
1.開發同學:手動打包或者執行./gradlew clean assembleRelease
2.開發同學:進入fir.im上傳測試apk(支援網頁,api介面等方式上傳)
3.測試同學:找到對應的檔案下載測試
複製程式碼
實現過程
編譯指令碼
1.前置準備 app的build.gradle中
```
buildTypes {
release {
.....
applicationVariants.all { variant ->
variant.outputs.all {
//outputFileName 是打包生成的apk檔名,
//這裡versionName和versionCode用_分割,後續方便指令碼使用
outputFileName = "${variant.productFlavors[0].name}_${defaultConfig.versionName}_${defaultConfig.versionCode}_release.apk"
}
}
}
}
```
複製程式碼
2.在工程目錄下新建buid和上傳指令碼
#bu.sh
#!/usr/bin/env bash
##使用方法Terminal在工程目錄下 sh bu.sh "這個版本改了啥"
declare -a apks
declare changelog
#入參${1} changelog 必須要有
if [ $# -eq 1 ]
then
chmod +x gradlew
./gradlew clean assembleRelease
changelog=${1}
else
echo ""
echo "Usage: $0 release_version"
echo ""
echo ""
exit 1
fi
#查詢當前目錄下的所有apk檔案,並加入到apks陣列中
#${1} 當前目錄
function findApk(){
for i in `ls ${1}`
do
if [ -d "${1}/${i}" ]
then
echo "${i}是目錄"
# 如果是目錄 ,則繼續遍歷
findApk ${1}/${i}
elif [[ ${i} =~ ".apk" ]]
then
apks=(${apks[@]} "${1}/${i}")
echo "${i}是apk檔案"
fi
done
}
#上傳apk檔案到fir.im
#${1} apk檔案路徑
function uploadApk2Fir(){
apkPath=${1}
#這裡要注意的是編譯生成的檔名中versionName和versionCode要用_分割
array=(${apkPath//_/ })
size=${#array[@]}
versionName=${array[$size-3]}
versionCode=${array[$size-2]}
#upload.sh 在另外一個shell檔案中單獨編寫
sh upload.sh ${apkPath} ${versionName} ${versionCode} ${changelog}
}
#dir=app/build/outputs/apk build後生成apk的檔案目錄
findApk app/build/outputs/apk
if [ ${#apks[@]} -ne 1 ]
then
#這裡注意的是,我們希望一次打包只出現一個測試包,要不然選哪個
echo "有多個apk檔案,不知道上傳哪個"
else
echo "準備上傳:"${apks[0]}
uploadApk2Fir ${apks[0]}
fi
複製程式碼
上傳指令碼
#!/usr/bin/env bash
#sh upload.sh app/build/outputs/apk/ngmm_atestServer/release/ngmm_atestServer_4.4.1_35_release.apk 4.4.45 38 test2
#${1} 檔案路徑
#${2} versionName
#${3} versionCode
#${4} changelog
#1.獲取 upload key 和token url
#這裡用到了 jq 使用參考:https://blog.csdn.net/offbye/article/details/38379195
resultFile=fir_get_upload_token_result.json
value=`
curl -X "POST" "http://api.fir.im/apps" \
-H "Content-Type: application/json" \
-d "{\"type\":\"android\", \"bundle_id\":\"your packagename\", \"api_token\":\"fir api token\"}" > ${resultFile} `
upload_key=` jq .cert.binary.key ${resultFile} | sed 's/\"//g' `
upload_token=` jq .cert.binary.token ${resultFile} | sed 's/\"//g'`
upload_url=` jq .cert.binary.upload_url ${resultFile} | sed 's/\"//g' `
rm -rf ${resultFile}
curl -F "key=${upload_key}" \
-F "token=${upload_token}" \
-F "file=@${1}" \
-F "x:name=appname" \
-F "x:version=${2}" \
-F "x:build=${3}" \
-F "x:changelog=${4}" \
${upload_url}
複製程式碼
ps:
1.api token , 需要到fir.im上獲取
https://fir.im/docs/description
複製程式碼
2.這裡用到了 jq 使用參考:
https://blog.csdn.net/offbye/article/details/38379195
複製程式碼