File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
plugins/src/main/java/com/google/firebase/gradle Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -257,6 +257,12 @@ abstract class GenerateTutorialBundleTask : DefaultTask() {
257257 ArtifactTutorialMapping (" FIAM Display" , " fiamd-dependency" ),
258258 " com.google.firebase:firebase-ml-vision" to
259259 ArtifactTutorialMapping (" Firebase MLKit Vision" , " ml-vision-dependency" ),
260+ " androidx.credentials:credentials" to
261+ ArtifactTutorialMapping (" Auth Google Sign In" , " auth-google-signin-first-dependency" ),
262+ " androidx.credentials:credentials-play-services-auth" to
263+ ArtifactTutorialMapping (" Auth Google Sign In" , " auth-google-signin-second-dependency" ),
264+ " com.google.android.libraries.identity.googleid" to
265+ ArtifactTutorialMapping (" Auth Google Sign In" , " auth-google-signin-third-dependency" ),
260266 " com.google.firebase:firebase-appdistribution-gradle" to
261267 ArtifactTutorialMapping (
262268 " App Distribution" ,
Original file line number Diff line number Diff line change @@ -820,7 +820,13 @@ abstract class PublishingPlugin : Plugin<Project> {
820820
821821 /* * Artifacts that we use in the tutorial bundle, but _not_ in the bom. */
822822 val EXTRA_TUTORIAL_ARTIFACTS =
823- listOf (" com.google.android.gms:play-services-ads" , " com.google.firebase:firebase-ml-vision" )
823+ listOf (
824+ " com.google.android.gms:play-services-ads" ,
825+ " com.google.firebase:firebase-ml-vision" ,
826+ " androidx.credentials:credentials" ,
827+ " androidx.credentials:credentials-play-services-auth" ,
828+ " com.google.android.libraries.identity.googleid:googleid" ,
829+ )
824830 }
825831}
826832
You can’t perform that action at this time.
0 commit comments