Windows Visual Studio下是否可以上传dSYM到Crashlytics?
Is it possible to upload dSYM to Crashlytics under the Windows Visual Studio?
我在 Windows Microsoft Visual Studio 的 Xamarin.iOS 中制作了一个 iOS 应用程序。
如何手动或自动将 dSYM 文件上传到 Crashlytics?
可能吗?
这里是来自 Fabric 的迈克。如果您在 Windows 上构建,建议使用 Fastlane 将 dSYM 上传给我们。车道将是:
lane :refresh_dsyms do
upload_symbols_to_crashlytics # Upload them to Crashlytics
clean_build_artifacts # Delete the local dSYM files
end
命令为:
$ fastlane refresh_dsyms
您需要配置您的快速通道以提供 dSYM 路径。
我在 Windows Microsoft Visual Studio 的 Xamarin.iOS 中制作了一个 iOS 应用程序。 如何手动或自动将 dSYM 文件上传到 Crashlytics? 可能吗?
这里是来自 Fabric 的迈克。如果您在 Windows 上构建,建议使用 Fastlane 将 dSYM 上传给我们。车道将是:
lane :refresh_dsyms do
upload_symbols_to_crashlytics # Upload them to Crashlytics
clean_build_artifacts # Delete the local dSYM files
end
命令为:
$ fastlane refresh_dsyms
您需要配置您的快速通道以提供 dSYM 路径。