Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: AGPBI: Program type already present: com.google.android.gms.auth.api.signin.internal.zzg

In my Adrdoi app, where I use Google Login and Firebase Cloud Messaging, I get this error message:

AGPBI: {"kind":"error","text":"Program type already present: com.google.android.gms.auth.api.signin.internal.zzg","sources":[{}]}

Does that mean that the google auth lib was already used somewhere else? Whats that from?

like image 681
Ralf Wickum Avatar asked Sep 18 '17 10:09

Ralf Wickum


1 Answers

I had the same problem.

Changed by changing

implementation 'com.google.firebase:firebase-auth:11.0.6'

to

implementation 'com.google.firebase:firebase-auth:11.2.2'

The issue happened after adding the firebase plugin at Android 3.

Android Plugin version automatically adds

implementation 'com.google.firebase:firebase-auth:11.0.6' 

but we need to change the version to 11.2.2

Error Log

like image 67
Swaminathan Avatar answered Oct 06 '22 23:10

Swaminathan