Question by
SkullFaceIt · Jun 05, 2018 at 11:12 PM ·
error messageapk
Error CS0246 when exporting apk,Error Cso246 when exporting apk
Every time I try to export my game to apk I get this error message
ERROR : /packages.unity.com/com.unity.xiaomi@1.0.2/XiaomiSupport/Editor/AppStoreSettingsEditor.cs(61,17): error CS0246: The type or namespace name `SerializedProperty' could not be found. Are you missing an assembly reference?
Comment
SerializedProperty is a class defined in the UnityEditor name space and can't be used in a built game. Are you sure the script is in and folder called Editor or surrounded by the correct preprocessor directives?
#if UNITY_EDITOR
...
#endif
Your answer