Skip to content

Commit 947e295

Browse files
1 parent 3e9f022 commit 947e295

File tree

95 files changed

+25914
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+25914
-0
lines changed
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Firebase App Hosting API Client Library for Java
2+
3+
Firebase App Hosting streamlines the development and deployment of dynamic Next.js and Angular applications, offering built-in framework support, GitHub integration, and integration with other Firebase products. You can use this API to intervene in the Firebase App Hosting build process and add custom functionality not supported in our default Console & CLI flows, including triggering builds from external CI/CD workflows or deploying from pre-built container images.
4+
5+
This page contains information about getting started with the Firebase App Hosting API
6+
using the Google API Client Library for Java. In addition, you may be interested
7+
in the following documentation:
8+
9+
* Browse the [Javadoc reference for the Firebase App Hosting API][javadoc]
10+
* Read the [Developer's Guide for the Google API Client Library for Java][google-api-client].
11+
* Interact with this API in your browser using the [APIs Explorer for the Firebase App Hosting API][api-explorer]
12+
13+
## Installation
14+
15+
### Maven
16+
17+
Add the following lines to your `pom.xml` file:
18+
19+
```xml
20+
<project>
21+
<dependencies>
22+
<dependency>
23+
<groupId>com.google.apis</groupId>
24+
<artifactId>google-api-services-firebaseapphosting</artifactId>
25+
<version>v1-rev20250501-2.0.0</version>
26+
</dependency>
27+
</dependencies>
28+
</project>
29+
```
30+
31+
### Gradle
32+
33+
```gradle
34+
repositories {
35+
mavenCentral()
36+
}
37+
dependencies {
38+
implementation 'com.google.apis:google-api-services-firebaseapphosting:v1-rev20250501-2.0.0'
39+
}
40+
```
41+
42+
[javadoc]: https://googleapis.dev/java/google-api-services-firebaseapphosting/latest/index.html
43+
[google-api-client]: https://github.com/googleapis/google-api-java-client/
44+
[api-explorer]: https://developers.google.com/apis-explorer/#p/firebaseapphosting/v1/

0 commit comments

Comments
 (0)