ULevelSequence and ALevelSequenceActor not loaded on android

i have a map with an ALevelSequenceActor in it and another object which has these two properties

UPROPERTY(EditAnywhere, BlueprintReadOnly)
	ULevelSequence* SequenceAsset = nullptr;

UPROPERTY(EditAnywhere, BlueprintReadOnly)
	ALevelSequenceActor* SequenceActor = nullptr;

where the sequence is set to an asset and the sequence actor is set to the actor in the map. packaging i set it to package all content to be sure that is not the cause of the issue.

however, on windows everything works fine but on android, both of those properties evaluate to 0

does anybody have ideas on how to proceed here?