skip to Main Content

Unable to launch firebase emulators ui

Hello everybody: i can't launch my emulators , firebase init ok , ports ok , the problem seems to come from the ui . Anybody could help me ? (base) jean-charlesdubien@airdejencharles firebase-demo-project % firebase emulators:start i emulators: Starting emulators: auth,…

VIEW QUESTION

Unable to upload media file toFirebase emulator

Using Firebase tools 11.21.0 and FIREBASE_STORAGE_EMULATOR_HOST=localhost:9199 and maven dependency <dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-storage</artifactId> <version>2.17.1</version> </dependency> I started the firebase emulator. And tried a simple file store: emulatorStorage = StorageOptions.newBuilder() .setProjectId(projectId) .setHost("http://localhost:9199") .setCredentials(NoCredentials.getInstance()) .build() .getService(); And tried to save a file: byte[]…

VIEW QUESTION
Back To Top
Search