Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经在 Play 商店中发布了一个 Android 应用程序。我应该如何发布多种风格,例如演示版与完整版?
安装完整版可以覆盖已经安装的演示版吗?
要使同时安装从不同风格构建的应用程序成为可能,您需要为applicationId它们设置不同的设置。
applicationId
就像是:
productFlavors { demo { applicationIdSuffix ".demo" } full { applicationIdSuffix ".full" } }