File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
plugins/src/main/java/com/google/firebase/gradle Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -257,6 +257,21 @@ abstract class GenerateTutorialBundleTask : DefaultTask() {
257
257
ArtifactTutorialMapping (" FIAM Display" , " fiamd-dependency" ),
258
258
" com.google.firebase:firebase-ml-vision" to
259
259
ArtifactTutorialMapping (" Firebase MLKit Vision" , " ml-vision-dependency" ),
260
+ " androidx.credentials:credentials" to
261
+ ArtifactTutorialMapping (
262
+ " Auth Google Sign In" ,
263
+ " auth-google-signin-first-dependency"
264
+ ),
265
+ " androidx.credentials:credentials-play-services-auth" to
266
+ ArtifactTutorialMapping (
267
+ " Auth Google Sign In" ,
268
+ " auth-google-signin-second-dependency"
269
+ ),
270
+ " com.google.android.libraries.identity.googleid" to
271
+ ArtifactTutorialMapping (
272
+ " Auth Google Sign In" ,
273
+ " auth-google-signin-third-dependency"
274
+ ),
260
275
" com.google.firebase:firebase-appdistribution-gradle" to
261
276
ArtifactTutorialMapping (
262
277
" App Distribution" ,
Original file line number Diff line number Diff line change @@ -820,7 +820,13 @@ abstract class PublishingPlugin : Plugin<Project> {
820
820
821
821
/* * Artifacts that we use in the tutorial bundle, but _not_ in the bom. */
822
822
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
+ )
824
830
}
825
831
}
826
832
You can’t perform that action at this time.
0 commit comments