Google Play 马甲包发布与优化攻略

一、合规与版本管理

二、上传与分发流程

  1. 登录 Play Console → 选择应用 → “版本管理” → “App 发布”。
  2. 上传每个渠道的 APK/AAB,填写对应 Release Notes 与发布说明。
  3. 选择对应 Track 并提交审核,Google 通常在1-3 小时内完成审核。

三、元数据与关键词优化

四、自动化发布示例(Play Developer API)

// 上传 AAB 并发布到 production
from googleapiclient.discovery import build

service = build('androidpublisher', 'v3', credentials=creds)
edit = service.edits().insert(body={}, packageName='com.example.app').execute()
aab = service.edits().bundles().upload(
    editId=edit['id'], packageName='com.example.app', media_body='app-release.aab'
).execute()
service.edits().tracks().update(
    editId=edit['id'], packageName='com.example.app',
    track='production', body={'releases':[{'versionCodes':[aab['versionCode']],'status':'completed'}]}
).execute()
service.edits().commit(editId=edit['id'], packageName='com.example.app').execute()
    

五、监测与优化

← 返回文章列表