首页 > 解决方案 > How to automate App review process with fastlane

问题描述

I am using fastlane to automate beta releases but I am wondering if it's possible to automate the review process?

So far, here is my configuration:

default_platform(:android)

platform :android do
  desc "Runs a beta build"
  lane :beta do
    gradle(task: 'assemble', build_type: 'Release')
    upload_to_play_store(track: 'beta')
  end
end

I've also tried

default_platform(:android)

platform :android do
  desc "Runs a beta build"
  lane :beta do
    gradle(task: 'assemble', build_type: 'Release')
    supply(track: 'beta', track_promote_to: 'beta', rollout: '1.0')
  end
end

Whilst this configuration does upload my apk, I still have to log in to the Developer Console to complete the Review and rollout steps - how can I automate this?

I want to run fastlane beta and not have to do any manual steps.

enter image description here

标签: androidfastlane

解决方案


推荐阅读