2021 年 6 月 28 日 开始,bugly 不再支持使用 openApi 的方式上传符号表,需要使用官方提供的命令行上传工具进行上传。 本插件当前使用的工具版本为:3.3.5
另
- upload_dsym_to_bugly action 的方法参数有变化,请注意。请参照 Getting Start 部分
- 去除了上传 ipa 到 bugly 的 action。
This project is a fastlane plugin. To get started with fastlane-plugin-upload_dsym_to_bugly
, add it to your project by running:
$ fastlane add_plugin upload_dsym_to_bugly
add the following to your fastfile
lane :upload_dysm do
upload_dsym_to_bugly(
file_path: "<path/to/your/x.app.dSYM.zip",
app_key: "<your app_key>",
app_id:"<your app_id>",
bundle_id: '<your bundle id>',
version: get_version_number,
raise_if_error: false
)
end
upload dSYM to bugly
For more information about how the fastlane
plugin system works, check out the Plugins documentation.
For any other issues and feedback about this plugin, please submit it to this repository.
If you have trouble using plugins, check out the Plugins Troubleshooting guide.
fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.