fastlane: [!] Google Api Error: Invalid request - Package not found: com.example.todo
fastlane: [!] Google Api Error: Invalid request - Package not found: com.example.todo
我正在为我的应用程序使用 React-native。我已经命名我的名字reactamplify
。我想将我的应用程序部署到 Google 游戏商店。对于自动化部署,我第一次使用 fastlane
。我找到了这个 documentation, follow the steps and give API grant access。在我的 React 本机应用程序中,我导航到 android
文件夹,然后 运行 这个命令 fastlane init
。提供 json_key_file
我下载的 auth json 文件的路径。但是我对包名感到困惑。我在 vscode com.reactamplify
中搜索我的应用程序名称,将它们替换为 com.example.todo
。然后 运行 android 文件夹 fastlane supply init
,我收到此错误:[!] Google Api Error: Invalid request - Package not found: com.example.todo.
我真的不知道如何修复它:(。真的丢失了 TBH。
当我运行fastlane supply
。我得到了这张图片
PS:如果有人给我示例图片就太棒了
找到原因了。我需要至少将一个版本手动上传到 google Play 商店应用。这就是我收到包名错误的原因。
就我而言,我删除了 fastlane
文件夹,然后再次 运行 以下内容:
fastlane supply init
对我来说,我发现 google 播放时会忽略“com”。在包名中!因此,在提交新版本时,请务必删除“com”。来自您的包裹字符串。
我正在为我的应用程序使用 React-native。我已经命名我的名字reactamplify
。我想将我的应用程序部署到 Google 游戏商店。对于自动化部署,我第一次使用 fastlane
。我找到了这个 documentation, follow the steps and give API grant access。在我的 React 本机应用程序中,我导航到 android
文件夹,然后 运行 这个命令 fastlane init
。提供 json_key_file
我下载的 auth json 文件的路径。但是我对包名感到困惑。我在 vscode com.reactamplify
中搜索我的应用程序名称,将它们替换为 com.example.todo
。然后 运行 android 文件夹 fastlane supply init
,我收到此错误:[!] Google Api Error: Invalid request - Package not found: com.example.todo.
我真的不知道如何修复它:(。真的丢失了 TBH。
当我运行fastlane supply
。我得到了这张图片
PS:如果有人给我示例图片就太棒了
找到原因了。我需要至少将一个版本手动上传到 google Play 商店应用。这就是我收到包名错误的原因。
就我而言,我删除了 fastlane
文件夹,然后再次 运行 以下内容:
fastlane supply init
对我来说,我发现 google 播放时会忽略“com”。在包名中!因此,在提交新版本时,请务必删除“com”。来自您的包裹字符串。