-
Notifications
You must be signed in to change notification settings - Fork 442
Description
[REQUIRED] Please fill in the following fields:
- Unity editor version: 2020.1.7f1
- Firebase Unity SDK version: 6.16.0
- Source you installed the SDK: UPM
- Problematic Firebase Component: App
- Other Firebase Components in use: Auth, Database
- Additional SDKs you are using: None
- Platform you are using the Unity editor on: Windows
- Platform you are targeting: Android
- Scripting Runtime: Mono
[REQUIRED] Please describe the issue here:
With the latest 6.16 update a lot of my issues and workarounds to get firebase working on android have been cleared up but one thing remains, if I use the UPM to install Firebase, I can't get the androidManifest to generate which means that there is no
/Plugins/Android/Firebase*
being generated either
Steps to reproduce:
Have you been able to reproduce this issue with just the Firebase Unity quickstarts (this GitHub project)? Yes
What's the issue repro rate?100%
What happened? How can we make the problem occur?
-
Make sure that
google-services.json
is present inside of assets folder. -
Add the scoped registries to the manifest.json
"scopedRegistries": [
{
"name": "Game Package Registry by Google",
"url": "https://unityregistry-pa.googleapis.com",
"scopes": [
"com.google"
]
}
]
- Then install the Firebase App, Auth, whatever, modules via UPM.
- Verify that after all resolutions are complete, it is still missing the AndroidManifest as well as everything inside of Plugins/android/Firebase*
- StreamingAssets folder is also not created
I notice that when I go import the sdk via unitypackage, that the Plugin/Android/Firebase
structure is present, but not from using the UPM. Is there a step I'm missing here?
Additonally, is there anything I can do, when on Android, to stop the iOS.Extensions.Xcode from getting installed?
I'd like to stop getting the Assembly 'Packages/com.google.firebase.app/Firebase/Editor/Firebase.Editor.dll' will not be loaded due to errors: Unable to resolve reference 'UnityEditor.iOS.Extensions.Xcode'. Is the assembly missing or incompatible with the current platform?
Error.