admin管理员组文章数量:1389750
I want to release an app that has successfully passed review on the Google Play Store to users using Ruby. The documentation says that when you pull the status as 'completed', it will be marked as 'done', but once it returns from review, the status is already 'completed' and the track is 'production' still not released. How can I make it available to all users?
Example code;
require 'google/apis/androidpublisher_v3'
require 'googleauth'
scope = ''
authorizer = Google::Auth::ServiceAccountCredentials.make_creds(
json_key_io: File.open('google.json'),
scope: scope
)
authorizer.fetch_access_token!
android_publisher = Google::Apis::AndroidpublisherV3::AndroidPublisherService.new
android_publisher.authorization = authorizer
edit = android_publisher.insert_edit(package_name)
edit_id = edit.id
track = android_publisher.get_edit_track(package_name, edit_id, 'production')
track;
@releases=
@name="2.48.0",
@release_notes=
@language="tr-TR",
@text=
"text">,
@language="en-US",
@text=
"text ">],
@status="completed",
@version_codes=["250"]>],
@track="production">
本文标签: androidHow to release a Google Play app to all users after passing review using RubyStack Overflow
版权声明:本文标题:android - How to release a Google Play app to all users after passing review using Ruby? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744667823a2618640.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论