相关疑难解决方法(0)

如何从Android应用程序连接到多个firebase数据库

我正在尝试在Firebase中创建一个项目,该项目将负责所有应用程序的一个常见问题.

也就是说,我想创建应用程序,然后让这些应用程序访问项目的特定Firebase数据库.

查看Firebase Android文档,我找不到使用以下方法将数据发送到另一个项目中的另一个firebase数据库的方法,但是引用是另一个项目.

DatabaseReference ref = FirebaseDatabase.getInstance().getReference().child("example");
        ref.push().setValue(d).addOnCompleteListener(new OnCompleteListener<Void>() {
            @Override
            public void onComplete(@NonNull Task<Void> task) {
                finish();
            }
        });
Run Code Online (Sandbox Code Playgroud)

android firebase firebase-realtime-database

14
推荐指数
1
解决办法
9110
查看次数

如何使用Android Studio将两个或多个google-services.json文件整合到同一项目中的不同Google服务中

我在做一个项目,我想整合GCMGoogle sign in但问题是都有google-services.json这就需要我们在我们的项目中添加的配置文件.

那么,我如何google-services.json在我的项目中集成两个配置文件.

这是我的配置文件之一

{
  "project_info": {
    "project_id": "default-xxx",
    "project_number": "xxx",
    "name": "xxx"
  },
  "client": [
    {
      "client_info": {
        "mobilesdk_app_id": "1:xxx",
        "client_id": "x.package",
        "client_type": 1,
        "android_client_info": {
          "package_name": "x.package_name"
        }
      },
      "oauth_client": [],
      "api_key": [],
      "services": {
        "analytics_service": {
          "status": 1
        },
        "cloud_messaging_service": {
          "status": 1,
          "apns_config": []
        },
        "appinvite_service": {
          "status": 1,
          "other_platform_oauth_client": []
        },
        "google_signin_service": {
          "status": 1
        },
        "ads_service": {
          "status": 1
        }
      }
    }
  ],
  "client_info": [], …
Run Code Online (Sandbox Code Playgroud)

android google-play-services android-studio

6
推荐指数
2
解决办法
1万
查看次数