Hey,
Im just trying to get banner ads into my game with the option of turning them off for a small fee.
6 hours later trying to sort out play games services.
Im at this stage
Configure your app
In your project-level
build.gradle
file, include Google’s Maven repository and Maven central repository in both yourbuildscript
andallprojects
sections:buildscript { repositories { google() mavenCentral() } } allprojects { repositories { google() mavenCentral() } }
Add the Google Play services dependency for the Play Games SDK to your module’s Gradle build file, which is commonly
app/build.gradle
:dependencies { implementation "com.google.android.gms:play-services-games-v2:+" }
After completing these steps you must set up sign-in in order for the game to access Play Games Services features.
Does anyone know how to do this?
Ive had such poor experiance using build.gradles that the forseeable future of battling this is giving me the shivers.
Thanks.
Update:
Some small links to maybe assist
These are the other links Im using
Unreal Doc