Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


AndroidCreateSymbols

Defines the options available for choosing the type of symbol file to create in an Android build.
Read time 1 minuteLast updated 4 days ago

Definition

  • Type: Enum
  • Namespace: UnityEditor
  • Assembly: UnityEditor
Warning
Deprecated. UnityEditor.AndroidCreateSymbols has been deprecated. Use UnityEditor.Android.DebugSymbols.level instead
public enum AndroidCreateSymbols

Remarks

Use UserBuildSettings.DebugSymbols.level instead. The values map to DebugSymbolLevel as follows:
  • AndroidCreateSymbols.Disabled
    corresponds to
    DebugSymbolLevel.None
    .
  • AndroidCreateSymbols.Public
    corresponds to
    DebugSymbolLevel.SymbolTable
    .
  • AndroidCreateSymbols.Debugging
    corresponds to
    DebugSymbolLevel.Full
    .

Fields

Value

Description

DebuggingCreate a zip package containing debugging symbols.
DisabledDo not create a symbols package.
PublicCreate a zip package containing public symbols.