如果在alpha或beta版本中我如何获取应用程序到市场的链接?它是我的第一个应用程序,所以我想在发布之前尝试与市场相关的功能。
答案 0 :(得分:1)
Did you have a look at the format of Play Store URLs?
https://play.google.com/store/apps/details?id=com.stackexchange.marvin
Or to be more generic:
https://play.google.com/store/apps/details?id={applicationId}
Play Store URLs evolve around your applicationId, so to link to your own app you can take the base link and substitute {applicationId}
with your applicationId
.
If you would like to use a global constant—which is especially useful in case you have different flavors—you can use BuildConfig.APPLICATION_ID
.
so I want to try functionality related to the market place before releasing.
Just keep in mind that you will receive error messages opening the link until your app is visible, even if you do have the correct link.