Search Issue Tracker
Won't Fix
Votes
0
Found in
2018.4
2019.4.1f1
2020.2
Issue ID
1258593
Regression
No
[Android] NullReferenceException on Serialization.CodeGenerator.Call due to stripping level being set to low
Reproduction steps:
1. Open the user's attached project "XmlSerializeNullRef.zip"
2. Build for Android
Expected result: Scene displays "Success" text
Actual result: A NullReferenceException text is being shown instead (See attached LogcatNullReference.txt)
Reproduces on: 2018.4.24f1, 2019.4.2f1, 2020.1.0b14, 2020.2.0a16
Reproduces with:
N/A, Samsung Galaxy S9 (SM-G960F), Android 8.0.0, CPU: Exynos 9 Series 9810, GPU: Mali-G72
VLNQA00313, Huawei Y6 Ⅱ Compact (HUAWEI LYO-L01), Android 5.1, CPU: MediaTek MT6735, GPU: Mali-T720
Notes:
-Preserve tags have been added to the "Link.xml"
-Issue does not appear if Stripping Level is set to Disabled
-NullReferenceException is only outputted when building in Mono
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Terrain Tree cast Realtime and Baked shadows simultaneously when "Mixed" Light mode and "Subtractive" Baked Illumination is used in Edit mode
- OnPostprocessAllAssets() is not called for a modified Prefab when another Asset is set Dirty in the same callback
- [Android] UIToolkit ClickEvent is fired when the device is rotated
- Compilation errors occur when "uintBitsToFloat(int)" gets used in OpenGLES
- User Reporting does not send reports when Managed Stripping Level is set to Low or higher
Resolution Note (2020.2.X):
There is quite a bit of reflection being used in System.Xml and mono and il2cpp work differently here.
In il2cpp in current project the error happens because TestIXmlSerializable.GetSchema() returns new object and does not set Id on it. Change method to return null and "success" is printed on screen.
For mono, disable the stripping. You can't ship new games using mono anyway.