I build react native app with react-native-firebase and I generate sha1 by these steps
- run project in android studio
- Click on Gradle menu.
- Expand Gradle Tasks tree
- Double click on android -> signingReport and then get the sha1
The problem is that some developers works on the project from different computers, same project but the sha1 of the apk has changed and each time I need to get the sha1 from the debug apk and upload it to firebase console and then download new google-service.json to android and googleInfo.plist to ios.
without it I get errors with authentication since it not recognize the google-sevice..
How can I solve this issue? what I'm doing wrong?