- chrome浏览器跨域浏览命令:
open -a "/Applications/Google Chrome.app" --args --disable-web-security --user-data-dir=/Users/dmcb/chromeDevUserData/
- Mac os 查看隐藏文件快捷线:
cmd+shift+.
- mac下使用命令行安装、卸载ipa包
# 安装
brew install --HEAD libimobiledevice
brew link --overwrite libimobiledevice
brew install ideviceinstaller
brew link --overwrite ideviceinstaller
# 获取ios的bundleld
ideviceinstaller -l -o list_user
# 获取ios的型号
ideviceinfo -k ProductType
# 获取ios的系统版本
ideviceinfo -k ProductVersion
# 获取ios的手机名称
ideviceinfo -k DeviceName
# 获取ios的udid,查看连接的设备udid
idevice_id -l
# 查看手机所有APP
ideviceinstaller -l
# 安装到设备
ideviceinstaller -i xxx.ipa
# 卸载app
ideviceinstaller -u com.xxx.xxx
- 验证下载文件的 MD5/SHA1/SHA256
# 验证SHA-256
openssl dgst -sha256 /path/to/file
# 验证SHA-1
openssl sha1 /path/to/file
# 验证 MD5
openssl md5 /path/to/file
- mac 电脑生成 ssh 公钥和私钥
# 查看ssh公钥和私钥信息
ls -al ~/.ssh
# 生成新的公钥和私钥
ssh-keygen -t rsa -C "your_email@example.com"
- Xcode证书位置
~/Library/MobileDevice/Provisioning Profiles
- Flutter命令行打包ipa(基于Flutter3.0以上)
# 打包profile模式测试包
Flutter build ipa --export-method=ad-hoc --profile --verbose
# 打包appstore正式,混淆代码包
Flutter build ipa --export-method=app-store --obfuscate --release --split-debug-info=build/obfuscate3 --verbose
-