Skip to content
Open
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
2 changes: 1 addition & 1 deletion auth/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
implementation("androidx.activity:activity-ktx:1.9.3")

// Import the BoM for the Firebase platform
implementation(platform("com.google.firebase:firebase-bom:33.5.0"))
implementation(platform("com.google.firebase:firebase-bom:33.9.0"))

// Add the dependency for the Firebase Authentication library
// When using the BoM, you don't specify versions in Firebase library dependencies
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ public void buildActionCodeSettings() {
.setUrl("https://www.example.com/finishSignUp?cartId=1234")
// This must be true
.setHandleCodeInApp(true)
.setLinkDomain("custom-domain.com")
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
.setLinkDomain("custom-domain.com")
// The domain must be configured in Firebase Hosting and owned by the project.
.setLinkDomain("custom-domain.com")

.setIOSBundleId("com.example.ios")
.setAndroidPackageName(
"com.example.android",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ abstract class MainActivity : AppCompatActivity() {
url = "https://www.example.com/finishSignUp?cartId=1234"
// This must be true
handleCodeInApp = true
setLinkDomain("custom-domain.com")
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
setLinkDomain("custom-domain.com")
// The domain must be configured in Firebase Hosting and owned by the project.
setLinkDomain("custom-domain.com")

setIOSBundleId("com.example.ios")
setAndroidPackageName(
"com.example.android",
Expand Down
Loading