top of page
Search

Blog Post: Unity 6 Plugins: Fixing Firebase, Google Play Games, and Ads

  • Writer: Jay A-Hunt
    Jay A-Hunt
  • Dec 10, 2024
  • 1 min read

Intro

Working with Unity 6 is like juggling plugins while riding a unicycle—sometimes things fall apart, and other times you land the trick. If you're dealing with Firebase, Google Play Games, and Ads, here’s a quick summary of the versions I used and how I got them to work together.


Plugins and Versions


  • Firebase (v11.4.2): For analytics and tracking player activity.

  • Google Play Games (v2.0.0): Handles achievements and leaderboards.

  • Google Mobile Ads (v22.3.0): For ad monetization without breaking compatibility.


What I Did to Fix It

Updating the minSdkVersion

The latest Google Play Games (v2.0.0) requires a minimum SDK version of 24. I updated the minSdkVersion in Unity’s Player Settings to resolve compatibility issues.


Default Android Manifest

Using a custom Android Manifest? Drop it. Unity’s default Manifest works fine and avoids potential conflicts.


Downgrading Google Mobile Ads

Firebase and Google Mobile Ads (v23.x and above) don’t play nicely together. Rolling back to v22.3.0 fixed the compatibility issues.


Conclusion

If you’re using these specific plugin versions and hitting similar issues, these fixes should save you some time. Hopefully, this quick guide helps smooth out the bumps so you can get back to making your game.

 
 
 

Comments


bottom of page