无法在flutter中为android应用程序编写特定的包名称

问题描述 投票:0回答:1

我正在尝试构建一个名为 chatapp 的应用程序,在创建它时应提及包名称。我尝试将包名称写为 com.example.chatapp 但它只写了 com 包名称中只能写三个字母,后来显示 com 不是有效的包名称,它应该类似于“com.example.chatapp”。示例.chatapp”。 Here only com is written and I tried to write com.example.chatapp. The full package name can't be written.

flutter firebase package-name
1个回答
0
投票

在包裹名称的确认阶段,您必须完整地写下它,在这里您只需输入

com
而不是
com.example.chatapp
。如果您无法完整输入,请在 android studio 中打开它并尝试使用 android studio 的终端。我已经面临这个问题并像这个解决方案一样解决了它。

© www.soinside.com 2019 - 2024. All rights reserved.