- Home /
Having Problem With AndroidManifest.xml
Hi, we are sooooo close to finishing our game, it is ready to be published through google play but we are having problems making any of the game services work.
we have a simple achievement button that should call the achievement UI, same goes for logging in. but we do not get any prompts when we are running it on our android device.
we have
PlayGamesPlatform.Activate();
in our start function
Social.localUser.Authenticate((bool success) => {
// handle success or failure
});
connected to a log in button
and
Social.ShowAchievementsUI();
on our show achievement button.
our email is connected as a tester on google play and the game service API's are all enabled
my real question is about the AndroidManifest that the game play service for unity created.
this is it:
"<?xml version="1.0" encoding="utf-8"?> <!-- This file was automatically generated by the Google Play Games plugin for Unity %|-374218510_4|% <manifest xmlns:android="http://schemas.android.com/apk/res/android" %|-1895622427_5|% %|-674250825_5|% android:versionName="1.0" > %|-624828089_8|% %|1682587094_7|% %|-1548273509_10|% %|-1878783563_8|% <!-- Required for Nearby Connections API --> %|257564952_10|% android:value="" /> %|-1160224482_12|% <!-- the space in these forces it to be interpreted as a string vs. int --> <meta-data android:name="com.google.android.gms.games.APP_ID" %|-248905578_18|% %|1197555023_19|% android:value="\ OUR.ID" /> %|1072776200_16|% %|1789782128_17|% <activity android:name="com.google.games.bridge.NativeBridgeActivity" %|756180681_19|% %|-1717593747_20|% </manifest>"
i have read online that the package name should be our package name but shouldnt this be created when we run android set up using our ID number for our game? should i physically change this in code in the manifest even though it says i shouldnt edit it?
also OUR.ID i have replaced just for this question and in the real manifest has our actual ID No
Many Thanks In Advance
Your answer
Follow this Question
Related Questions
How to alter the Android Manifest to use my ad-displaying activity in Unity? 0 Answers
Pls someone help, I have no clue how to do this for days 0 Answers
Android App not showing in Play search results? 1 Answer
Game crashes on push notification (Android) 1 Answer
[URGENT!]Android Manifest file keeps reverting changes after build! 0 Answers