Closed tranb3r closed 1 year ago
I actually can't remember why this dependency is included...removing it doesn't seem to cause any build problems and the tests are fine as well, so I will remove it at the next version 👍
@TobiasBuchholz
Thank you for removing the Microsoft.CSharp
dependency in version 2.0.0.
However, it's still pulled in by CloudMessaging
.
This is because you're using a dynamic
type in DictionaryExtensions
(in GetObject
method).
I think it would be a good idea to get rid of it, since it has a negative impact on apk size optimization.
What do you think?
Changing the code to not using the dynamic
keyword anymore wasn't very difficult, so the new version 2.0.1 shouldn't pull in Microsoft.CSharp
anymore.
Hi,
Microsoft.CSharp
is listed inPlugin.Firebase
nuget's dependencies. Do you know why it's referenced inPlugin.Firebase.csproj
? What is it used for? Can it be removed?Thanks!