I want to deploy and publish multiple at the same time. Currently I'm using https://www.npmjs.com/package/deploy-aab-google-play npm library to push bundle files. It is working well doing the job for me.
But, I have a new requirement. I need to get all apps approved before going live. Play stores "Managed Publishing" is very good option to do so, but it is not possible to publish every app manually from play console dashboard like shown in below image. I need to deploy more than 30 apps (increasing day by day) at once. Play store Managed publishing
Can we get app status through API call or any npm library which return is app approved and ready to publish
and if so make app through API call or any npm library only.
Any tools such as deploy-aab-google-play
which i use to push aab files.
Thank you in advance for your suggestions.
The approach we took that is working for us is a workaround based on staged rollouts. Here's how it works:
Submit your app for review with 0.00001% as the initial rollout percentage and managed updates turned off.
inProgress
. You can also check user fraction to ensure it's below 1% just to be doubly sure you have the right version.completed
:{
"releases": [{
"versionCodes": ["${versionCodeFromAbove}"],
"status": "completed"
}]
}