-
Notifications
You must be signed in to change notification settings - Fork 120
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
clientId.secret cannot be null.. Error thrown null. #379
Comments
@solaristhesun – help me understand why I see Either way, this seems like it's a bug. Can fix. |
@kevmoo Thanks for the response. It's a dart (flutter) project. The stacktrace is generated by crashlytics. Apparently it assumes that the files are all java. |
@solaristhesun any chance you could share with me your Crashlytics exception catching code that you have setup in Dart that is reporting this so I can investigate the Thanks |
@Salakar
It is integrated like this:
|
In relation to |
Hello, I am facing the same issues. Did you solve the problem? Thank you. |
If I create a client id in dart code like this:
final ClientId clientId = ClientId.serviceAccount(AppConstants.GOOGLE_API_CLIENT_ID);
It crashes here:
Because clientId.secret is null, if I use serviceAccount. It works when I use ClientId(AppConstants.GOOGLE_API_CLIENT_ID, ''). Am I doing something wrong here? What is the point of ClientId.serviceAccount, if it cannot be used?
The text was updated successfully, but these errors were encountered: