微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Mac电脑开发命令汇总

  1. chrome浏览器跨域浏览命令:
    open -a "/Applications/Google Chrome.app" --args --disable-web-security  --user-data-dir=/Users/dmcb/chromeDevUserData/
  2. Mac os 查看隐藏文件快捷线:
    cmd+shift+.
  3. 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 
    
  4. 验证下载文件的 MD5/SHA1/SHA256
    # 验证SHA-256
    openssl dgst -sha256 /path/to/file
    
    # 验证SHA-1
    openssl sha1 /path/to/file
    
    # 验证 MD5
    openssl md5 /path/to/file
  5. mac 电脑生成 ssh 公钥和私钥
    # 查看ssh公钥和私钥信息
    ls -al ~/.ssh
    
    # 生成新的公钥和私钥
    ssh-keygen -t rsa -C "your_email@example.com"

  6. Xcode证书位置
    ~/Library/MobileDevice/Provisioning Profiles

  7. 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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐