首页 > 解决方案 > google-services.json 生成错误的 ios_info bundle_id 字符串

问题描述

我有一个 Firebase 项目,里面有一个 android 和一个 ios 应用程序。

这是我下载的 google-service.json 的剪辑:

"appinvite_service": {
      "other_platform_oauth_client": [{
          "client_id": "xxxxxxxx.apps.googleusercontent.com",
          "client_type": 2,
          "ios_info": {
            "bundle_id": "com.ramobile.myapp"
          }
        } ]
    }

有一天,我创建/添加了一个带有新捆绑 ID 的新 ios 应用程序:com.ramobile.newapp,然后不久之后,我“删除该应用程序”,并再次下载 google-service.json,但ios_infobundle_id仍在重新使用最新(已删除)的 ios 应用程序包 ID。

"appinvite_service": {
      "other_platform_oauth_client": [{
          "client_id": "xxxxxxxx.apps.googleusercontent.com",
          "client_type": 2,
          "ios_info": {
            "bundle_id": "com.ramobile.newapp"
          }
        } ]
    }

我已经多次刷新页面并下载文件,但结果仍然相同。正常吗?应该和第一个一样吧?

有人帮我吗?

标签: androidiosjsonfirebaseplist

解决方案


推荐阅读