写点什么

appuploader 入门使用

作者:雪奈椰子
  • 2023-05-03
    广东
  • 本文字数:754 字

    阅读完需:约 2 分钟

回想一下我们发布 iOS 应用,不仅步骤繁琐,非常耗时。一旦其中一步失误了,又得重新来。作为一名优秀的工程师不应该让这些重复的工作在浪费我们的人生。在软件工程里面,我们一直都推崇把重复、流程化的工作交给程序完成。这次的文章主角就是为了解放我们而来—— appuploader,appuploader 类似于 Fastlane。这个明星库在 github 已经高达 1w 多的 start 量,得到了广大码农们的认为。

appuploader

appuploader 是 iOS (还有 Android ) 布署和发布最好的一套工具。它处理了所有重复的工作,例如生成截图,发布应用等。

APP 开发助手 iOS APP 上架到 App Store 的辅助工具,解决 iOS APP 上架繁琐费时的情况,帮助跨平台 APP 开发者上架苹果应用,在没有配置 Mac 苹果机的情况,实现 iOS 证书申请,创建 iOS 开发者证书、iOS 发布证书等各类证书,iOS 开发者在 Windows、Linux 或 Mac 系统中上传 IPA 到 App Store,简化 iOS APP 上架流程!在任何电脑中轻松快速上架你的 APP,包含 windows 版, Mac 版, 以及 Linux 版老的兼容版本。

Fastlane 实践

那么如何使用 Fastlane 写一个我们属于自己的 lane 呢? 就以发布 ipa 到 fir 为例

desc "发布到 Fir"lane :pulish_to_fir do # 运行 pod install cocoapods # 构建和打包 ipa gym( clean: true, output_directory: './firim', scheme: 'xxxx', configuration: 'Test', export_options: { method: 'development', provisioningProfiles: { "xxx.xxx.xxx": "match Development xxx.xxx.xxx" }, } ) # 上传 ipa 到 fir.im 服务器,在 fir.im 获取 firim_api_token firim(firim_api_token: "fir_token")end

现在我们来讲解 appuploader 怎么上传截图发布应用呢,我们下面来看看。

首先我们下载 appuploader,链接:http://www.applicationloader.net/。

进入批量上传截图页面。根据提示操作,上传 APP,点击下载,应用资料就下载完成了。


用户头像

雪奈椰子

关注

还未添加个人签名 2022-07-22 加入

还未添加个人简介

评论

发布
暂无评论
appuploader 入门使用_雪奈椰子_InfoQ写作社区