Skip to content

Files

Latest commit

b4ab89b · Jun 17, 2025

History

History
This branch is up to date with googleapis/google-api-java-client-services:main.

README.md

Firebase Hosting API Client Library for Java

The Firebase Hosting REST API enables programmatic and customizable management and deployments to your Firebase-hosted sites. Use this REST API to create and manage channels and sites as well as to deploy new or updated hosting configurations and content files.

This page contains information about getting started with the Firebase Hosting API using the Google API Client Library for Java. In addition, you may be interested in the following documentation:

Installation

Maven

Add the following lines to your pom.xml file:

<project>
  <dependencies>
    <dependency>
      <groupId>com.google.apis</groupId>
      <artifactId>google-api-services-firebasehosting</artifactId>
      <version>v1-rev20241203-2.0.0</version>
    </dependency>
  </dependencies>
</project>

Gradle

repositories {
  mavenCentral()
}
dependencies {
  implementation 'com.google.apis:google-api-services-firebasehosting:v1-rev20241203-2.0.0'
}