【发布时间】:2020-12-27 17:33:08
【问题描述】:
我无法在 Firebaseoptions 中使用 GoogleCredentials。使用 Maven 导出时出现以下错误:
class file for com.google.auth.Credentials not found
FirebaseOptions options = FirebaseOptions.builder()
.setCredentials(GoogleCredentials.fromStream(serviceAccount))
// Your Database URL can be found in your firebase console -> your project
.setDatabaseUrl("https://health-45311.firebaseio.com/")
.build();
在 Intellij 中我无法导入包,但是当我使用 Maven 导出时没有任何效果。
我的 pom.xml
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>15.0.1</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>15.0.1</version>
</dependency>
<dependency>
<groupId>com.google.firebase</groupId>
<artifactId>firebase-admin</artifactId>
<version>7.1.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.oauth-client/google-oauth-client -->
<dependency>
<groupId>com.google.oauth-client</groupId>
<artifactId>google-oauth-client</artifactId>
<version>1.31.2</version>
</dependency>
</dependencies>
【问题讨论】:
标签: java firebase maven javafx firebase-admin