Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auth pia test #1527

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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
19 changes: 11 additions & 8 deletions auth/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,21 +58,24 @@ dependencies {
implementation("androidx.navigation:navigation-fragment-ktx:2.6.0")
implementation("androidx.navigation:navigation-ui-ktx:2.6.0")

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:32.1.0"))
// Firebase Authentication
implementation(files("../libs/firebase-auth-21.2.0.aar"))
implementation(files("../libs/firebase-auth-ktx-21.2.0.aar"))

// Firebase Authentication (Java)
implementation("com.google.firebase:firebase-auth")

// Firebase Authentication (Kotlin)
implementation("com.google.firebase:firebase-auth-ktx")
// Firebase Auth's transitive dependencies
implementation("com.google.firebase:firebase-auth-interop:20.0.0")
implementation("com.google.firebase:firebase-common-ktx:20.3.2")
implementation("com.google.android.recaptcha:recaptcha:18.1.1")

// Google Identity Services SDK (only required for Auth with Google)
implementation("com.google.android.gms:play-services-auth:20.5.0")

// Firebase UI
// Used in FirebaseUIActivity.
implementation("com.firebaseui:firebase-ui-auth:8.0.2")
implementation("com.firebaseui:firebase-ui-auth:8.0.2") {
// Excluding auth so that it doesn't pick up an older version
exclude(group = "com.google.firebase", module = "firebase-auth")
}

// Facebook Android SDK (only required for Facebook Login)
// Used in FacebookLoginActivity.
Expand Down
1 change: 1 addition & 0 deletions auth/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ android.useAndroidX=true
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
android.useAndroidX=true
Loading