Vlastimil Brecka
10/17/2024, 4:26 PMFileInputStream serviceAccount =
new FileInputStream("path/to/serviceAccountKey.json");
FirebaseOptions options = new FirebaseOptions.Builder()
.setCredentials(GoogleCredentials.fromStream(serviceAccount))
.build();
FirebaseApp.initializeApp(options);
Which is a java dependency available via maven
Can I somehow include a 3rd party dependency just for that one task?Philip W
10/17/2024, 5:12 PM