Unity3D打包Google aab后,ProtoBuf的问题

最近打算上架google play,按照网上的方法打包好了aab。

img

img

并且也顺利提交到google上,但是装到手机上运行就会报错:

03-09 15:01:12.965 21898 21950 E Unity : NotSupportedException: System.Reflection.Emit.DynamicMethod::.ctor
03-09 15:01:12.965 21898 21950 E Unity : at System.Reflection.Emit.DynamicMethod..ctor (System.String name, System.Type returnType, System.Type[] parameterTypes, System.Type owner, System.Boolean skipVisibility) [0x00000] in <00000000000000000000000000000000>:0
03-09 15:01:12.965 21898 21950 E Unity : at ProtoBuf.Compiler.CompilerContext..ctor (System.Type associatedType, System.Boolean isWriter, System.Boolean isStatic) [0x00000] in <00000000000000000000000000000000>:0
03-09 15:01:12.965 21898 21950 E Unity : at ProtoBuf.Compiler.CompilerContext.BuildSerializer (ProtoBuf.Serializers.IProtoSerializer head) [0x00000] in <00000000000000000000000000000000>:0
03-09 15:01:12.965 21898 21950 E Unity : at ProtoBuf.Serializers.CompiledSerializer..ctor (ProtoBuf.Serializers.IProtoTypeSerializer head) [0x00000] in <00000000000000000000000000000000>:0
03-09 15:01:12.965 21898 21950 E Unity : at ProtoBuf.Serializers.CompiledSerializer.Wrap (ProtoBuf.Serializers.IProtoTypeSerializer head) [0x00000] in <00000000000000000000000000000000>:0
03-09 15:01:12.965 21898 21950 E Unity : at ProtoBuf.Meta.MetaType.get_Serializer () [0x00000] in <00000000000000000000000000000000>:0
03-09 15:01:12.965 21898 21950 E Unity : at Pro
03-09 15:01:13.922 704 2989 E ANDR-PERF-MPCTL: poll() has timed out for /sys/module/msm_performance/events/cpu_hotplug
03-09 15:01:13.922 704 2989 E ANDR-PERF-MPCTL: Block on poll()

弄了半天也没弄好,不知道怎么改。
1.不打包aab,而是直接打包apk的话,在真机上运行起来是没问题的。
2.打包aab,不勾选ARM 64,也是能在真机上运行,但没法上架谷歌,谷歌要求要支持64位。

求解。