I use Google ads in my Unity game.
The ontent of the pod file:
target 'UnityFramework' do
pod 'Firebase/Analytics', '9.6.0'
pod 'Firebase/Core', '9.6.0'
pod 'Google-Mobile-Ads-SDK', '~> 9.0'
end
Now I would like to use Google Native Ads.
After I install the Plugin (GoogleMobileAds-native.unitypackage) it shows an error:
Multiple precompiled assemblies with the same name Google.MiniJson.dll included or the current platform. Only one assembly with the same name is allowed per platform. (Assets/Plugins/Google.MiniJson.dll)
and this
Multiple precompiled assemblies with the same name Google.MiniJson.dll included or the current platform. Only one assembly with the same name is allowed per platform. (Assets/Firebase/Plugins/Google.MiniJson.dll)
So it is somehow the problem with Firebase and Native ads.
How can this resolve?
↧