Enum Performance in Android

In Java we are told to strictly avoid using enums on Android because they take up twice the memory.
If I am using Kotlin to develop an Android App, do I have the same problem if I use a Kotlin Enum?

There is no android-specific component.
For Android, Java 6 is used and so, yes you have the same problem

1 Like