Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
40 changes: 31 additions & 9 deletions firebase-dataconnect/demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ import java.nio.charset.StandardCharsets

plugins {
// Use whichever versions of these dependencies suit your application.
// The versions shown here were the latest versions as of May 09, 2025.
// The versions shown here were the latest versions as of June 10, 2025.
// Note, however, that the version of kotlin("plugin.serialization") _must_,
// in general, match the version of kotlin("android").
id("com.android.application") version "8.9.2"
id("com.android.application") version "8.10.1"
id("com.google.gms.google-services") version "4.4.2"
val kotlinVersion = "2.1.10"
kotlin("android") version kotlinVersion
Expand All @@ -35,14 +35,17 @@ plugins {

dependencies {
// Use whichever versions of these dependencies suit your application.
// The versions shown here were the latest versions as of May 09, 2025.
implementation("com.google.firebase:firebase-dataconnect:16.0.1")
// The versions shown here were the latest versions as of June 10, 2025.

// Data Connect
implementation(platform("com.google.firebase:firebase-bom:33.15.0"))
implementation("com.google.firebase:firebase-dataconnect")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.1")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.0")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.8.1")
implementation("androidx.appcompat:appcompat:1.7.1")
implementation("androidx.activity:activity-ktx:1.10.1")
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.0")
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1")
implementation("com.google.android.material:material:1.12.0")

// The following code in this "dependencies" block can be omitted from customer
Expand Down Expand Up @@ -121,6 +124,11 @@ abstract class DataConnectGenerateSourcesTask : DefaultTask() {

@get:Input @get:Optional abstract val nodeExecutableDirectory: Property<String>

@get:InputFile
@get:Optional
@get:PathSensitive(PathSensitivity.ABSOLUTE)
abstract val dataConnectEmulatorExecutable: RegularFileProperty

@get:OutputDirectory abstract val outputDirectory: DirectoryProperty

@get:Internal abstract val workDirectory: DirectoryProperty
Expand All @@ -137,13 +145,15 @@ abstract class DataConnectGenerateSourcesTask : DefaultTask() {
val firebaseToolsVersion: String = firebaseToolsVersion.get()
val firebaseCommand: String = firebaseCommand.get()
val nodeExecutableDirectory: String? = nodeExecutableDirectory.orNull
val dataConnectEmulatorExecutable: File? = dataConnectEmulatorExecutable.orNull?.asFile
val outputDirectory: File = outputDirectory.get().asFile
val workDirectory: File = workDirectory.get().asFile

logger.info("inputDirectory: {}", inputDirectory.absolutePath)
logger.info("firebaseToolsVersion: {}", firebaseToolsVersion)
logger.info("firebaseCommand: {}", firebaseCommand)
logger.info("nodeExecutableDirectory: {}", nodeExecutableDirectory)
logger.info("dataConnectEmulatorExecutable: {}", dataConnectEmulatorExecutable)
logger.info("outputDirectory: {}", outputDirectory.absolutePath)
logger.info("workDirectory: {}", workDirectory.absolutePath)

Expand All @@ -167,6 +177,7 @@ abstract class DataConnectGenerateSourcesTask : DefaultTask() {
this,
firebaseCommand = firebaseCommand,
nodeExecutableDirectory = nodeExecutableDirectory,
dataConnectEmulatorExecutable = dataConnectEmulatorExecutable,
path = providerFactory.environmentVariable("PATH").orNull,
)
args("--debug", "dataconnect:sdk:generate")
Expand Down Expand Up @@ -194,6 +205,7 @@ abstract class DataConnectGenerateSourcesTask : DefaultTask() {
execSpec: ExecSpec,
firebaseCommand: String,
nodeExecutableDirectory: String?,
dataConnectEmulatorExecutable: File?,
path: String?,
) {
execSpec.setCommandLine(firebaseCommand)
Expand All @@ -212,6 +224,10 @@ abstract class DataConnectGenerateSourcesTask : DefaultTask() {
if (newPath !== null) {
execSpec.environment("PATH", newPath)
}

if (dataConnectEmulatorExecutable !== null) {
execSpec.environment("DATACONNECT_EMULATOR_BINARY_PATH", dataConnectEmulatorExecutable)
}
}
}
}
Expand Down Expand Up @@ -262,14 +278,19 @@ run {

firebaseCommand =
project.providers
.gradleProperty("dataConnect.minimalApp.firebaseCommand")
.gradleProperty("dataConnect.demo.firebaseCommand")
.orElse("firebase")

nodeExecutableDirectory =
project.providers.gradleProperty("dataConnect.minimalApp.nodeExecutableDirectory").map {
project.providers.gradleProperty("dataConnect.demo.nodeExecutableDirectory").map {
projectDirectory.dir(it).asFile.absolutePath
}

dataConnectEmulatorExecutable =
project.providers
.gradleProperty("dataConnect.demo.dataConnectEmulatorExecutable")
.map { projectDirectory.file(it) }

val path = providers.environmentVariable("PATH")
firebaseToolsVersion =
providers
Expand All @@ -278,6 +299,7 @@ run {
this,
firebaseCommand = firebaseCommand.get(),
nodeExecutableDirectory = nodeExecutableDirectory.orNull,
dataConnectEmulatorExecutable = dataConnectEmulatorExecutable.orNull?.asFile,
path = path.orNull,
)
args("--version")
Expand Down
18 changes: 18 additions & 0 deletions firebase-dataconnect/demo/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,21 @@ org.gradle.caching=true
android.useAndroidX=true

org.gradle.jvmargs=-Xmx2g

// The path of the "firebase" command to use.
// If not specified, then "firebase" is used, resolved using the PATH environment variable.
// See build.gradle.kts for details.
//dataConnect.demo.firebaseCommand=/path/to/firebase

// The path of the directory containing the "node" and "npm" commands.
// This directory will be prepended to the PATH before running the "firebase" command
// and may be useful to override the "node" and "npm" executables that get used by it.
// See build.gradle.kts for details.
//dataConnect.demo.nodeExecutableDirectory=/path/to/node/bin

// The Data Connect emulator executable to use.
// If set, the `DATACONNECT_EMULATOR_BINARY_PATH` environment variable will be set before calling
// the "firebase" command to instruct it to use the specified Data Connect emulator rather than
// downloading an official version and using it.
// See build.gradle.kts for details.
//dataConnect.demo.dataConnectEmulatorExecutable=/path/to/cli
Loading