小编Vik*_*Roy的帖子

在 React Native 应用程序中集成 Firebase 性能库时出现 java.lang.UnsupportedClassVersionError

我正在尝试将 firebase 性能库集成到我的 React Native 应用程序中。我正在关注https://rnfirebase.io/perf/usage上的文档

将以下行添加到 /android/build.gradle 后,出现 java.lang.UnsupportedClassVersionError 错误

classpath 'com.google.firebase:perf-plugin:1.4.1'

以下是完整的错误消息:

A problem occurred configuring project ':amazon-cognito-identity-js'.
> Failed to notify project evaluation listener.
   > java.lang.UnsupportedClassVersionError: com/google/firebase/perf/plugin/FirebasePerfPlugin has been compiled by a more recent version of the Java Runtime (class file version 55.0), this version of the Java Runtime only recognizes class file versions up to 52.0
Run Code Online (Sandbox Code Playgroud)

以下是我的gradle版本:

distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip
Run Code Online (Sandbox Code Playgroud)

以下是我机器上的java版本:

openjdk version "1.8.0_292"
OpenJDK Runtime Environment (AdoptOpenJDK)(build 1.8.0_292-b10)
OpenJDK 64-Bit Server VM (AdoptOpenJDK)(build 25.292-b10, mixed …
Run Code Online (Sandbox Code Playgroud)

android firebase react-native

11
推荐指数
1
解决办法
6514
查看次数

如何在 AWS Glue 中指定连接类型?

我正在使用 AWS Glue 连接两个表。默认情况下,它执行 INNER JOIN。我想做一个左外连接。我参考了 AWS Glue 文档,但无法将联接类型传递给 Join.apply() 方法。有没有办法在 AWS Glue 中实现这一点?

## @type: Join
## @args: [keys1 = id, keys2 = "user_id"]
## @return: cUser
## @inputs: [frame1 = cUser0, frame2 = cUserLogins]
#cUser = Join.apply(frame1 = cUser0, frame2 = +, keys1 = "id", keys2 = "user_id", transformation_ctx = "<transformation_ctx>")


## @type: Join
## @args: [keys1 = id, keys2 = user_id]
## @return: datasource0
## @inputs: [frame1 = cUser, frame2 = cKKR]
datasource0 = Join.apply(frame1 = cUser0, …
Run Code Online (Sandbox Code Playgroud)

etl pyspark aws-glue

5
推荐指数
1
解决办法
7724
查看次数

BugSnag 在生产中不适用于 Laravel Vapor

我正在尝试通过 Laravel Vapor 将 BugSnag 与部署在 AWS Lambda 上的 Laravel 应用程序集成。

Bugsnag 在我的本地工作正常,但没有从 AWS Lamda 发送任何错误。

我也试过 Bugsnag::setBatchSending(false) 但它仍然不适合我。

任何想法可能是错误的?

laravel bugsnag aws-lambda laravel-vapor

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