我尝试使用Fastlane构建并发布Android版本到PlayStore,但当我运行通道时,输出为:Could not find release for version code '6' to update changelog
我的Fastfile:
default_platform(:android)
platform :android do
lane :release do
gradle(
task: "bundle",
build_type: "Release",
)
upload_to_play_store(
track: "internal",
skip_upload_changelogs: true,
skip_upload_apk: true,
version_name: "2.0.0",
version_code: 6,
)
end
end
2条答案
按热度按时间pb3s4cty1#
对于那些也使用Flutter并面临相同问题的用户,请指定
apk
或app bundle
文件路径。在我的例子中,设置:
aab: "../build/app/outputs/bundle/release/app-release.aab"
解决了这个问题bweufnob2#
FASTLANE:为了改进上面给出的答案
如果你像我一样使用macbook和vs代码,你可以通过右键单击你的aab文件并复制路径来复制路径到你的项目。