为不同的国家/地区发布相同的 Android 应用程序

Publishing Same Android App for Different Countries

我开发了一个 android 应用程序,我想在 google Play 商店上发布。问题是该应用程序在不同国家/地区的工作方式不同,因此我必须调整我的 apk 并为不同国家/地区上传相同的 android 应用程序。

我在 Google 开发人员指南网站上阅读过,但它没有提到任何基于 country/region 的过滤器。有什么帮助或建议吗?

Android Publishing Filters Guide

我在我的应用程序中使用地理位置名称。有些地区有 4 个部分地址(街道名称、地区名称、城市、国家),有些地区只有 3 个部分(地区、城市和国家)。

我没有看到任何过滤器可以帮助您在不同地区发布应用程序,但我可以为您的想法建议不同的方法(根据您的评论)。

"based on its functionality to provide user with the info about the street/area in its surrounding. Streets/areas will covers a small radius around the user current location".

您可以使用用户的当前坐标并设置某个半径的参数,比如 500M,您可以显示 500M 半径内的信息。

" 如果我​​跳过街道名称,它将 只会扩大周围区域 。"

通过这样做,街道或区域名称是否可用并不重要,无论如何您都可以完成工作。