Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ai-logic/firebase-ai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Unreleased

- [feature] Added [firebase_app_check] as a dependency of the SDK (#8225)
- [feature] Added the `retrievalConfig` argument to `TemplateToolConfig` (#8107)
- [fixed] Fixed citation indices to be native UTF-16 instead of UTF-8. (#8056)

Expand Down Expand Up @@ -176,4 +177,3 @@ using [specific Gemini models](/docs/vertex-ai/models).

Note: This feature is in Public Preview, which means that it is not subject to any SLA or
deprecation policy and could change in backwards-incompatible ways.

3 changes: 2 additions & 1 deletion ai-logic/firebase-ai/firebase-ai.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,10 @@ dependencies {
implementation(libs.ktor.client.logging)

api(libs.firebase.common)
api(project(":appcheck:firebase-appcheck"))
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Implementation is probably a better candidate here if we still are only interacting with AppCheck through the component system. api adds an additional compile time dependency for consumers. WDYT?

implementation(libs.firebase.components)
implementation(libs.firebase.annotations)
implementation("com.google.firebase:firebase-appcheck-interop:17.1.0")
implementation(project(":appcheck:firebase-appcheck-interop"))
implementation(libs.androidx.annotation)
implementation(libs.kotlinx.serialization.json)
implementation(libs.androidx.core.ktx)
Expand Down
Loading