Hi everyone, I am implementing in-app updates in m...
# android
r
Hi everyone, I am implementing in-app updates in my app. Here I need to check whether the update was flexible or immediate. But at the time of pushing an update how can I define whether the following update is flexible or immediate?
😶 1
m
Copy code
To determine priority, Google Play uses an integer value between 0 and 5, with 0 being the default and 5 being the highest priority. To set the priority for an update, use the inAppUpdatePriority field under Edits.tracks.releases in the Google Play Developer API. All newly-added versions in the release are considered to be the same priority as the release. Priority can only be set when rolling out a new release and cannot be changed later.
Source
c
Yeah. apparently this is only possible to set if you use the google play publishing api. i want them to make this a setting via the UI, but its been like 2 years... so i doubt its coming anytime soon.
r
okay will try it
thanks for the responses!😄