Hi everyone. Has anyone experienced packaging errors for Android like the one below? This has happened to me a couple of times and for the life of me I do not know how to fix it. Any information would be greatly appreciated.
Can’t save ‘C:/Users/Weich/Documents/Many Worlds/Projects/SHHA/Samuel Demo/Samuel/Saved/Cooked/Android_ASTC/Samuel/Plugins/Convai/Content/Core/ConvaiBaseCharacter.uasset’: Illegal reference to private object: ‘BP_Samuel_C /Game/VRTemplate/Maps/VRTemplateMap.VRTemplateMap:PersistentLevel.BP_Samuel_C_1’ referenced by ‘Unknown referencer’ (at ‘Unknown owner’) in its ‘Unknown property’ property (private object belongs to an external map).
Hello thanks for the reply. I deleted the Binaries, Intermediate, and Saved folders and the packaging worked. But it doesn’t always. If it happens again I will share all the console logs
Yes I was hoping someone had this issue before, however I did manage to figure it out. So for future Unreal Engine developers here’s what I did (although not elegant in my opinion):
The problem was the Convai Base Character Blueprint made a hard reference to my VRPawn Blueprint. (I had no idea where)
So what I did was to Migrate the Convai Base Character Blueprint from the core plugin files to my project’s Content folder, and replaced all the references across the project.
This seemed to fix the issue. If anybody comes up with a better solution please let me know.