1. MONO mode
· Develops in C# to support various kinds of platforms
· Converts C# code to IL(Intermediate Language) code
· Creates Assembly-CSharp.dll (.NET framework based) when building
(Important logics will be included in Assembly-CSharp.dll and speficif files)
2. IL2CPP mode
· Develops in C# to support various kinds of platforms
· Convert C# code to IL(Intermediate Language) code
· Converts IL code to C++ format
· Creates libil2cpp.so(Binary based) when building
(Important logics will be included in libil2cpp.so and specific files)
This post will discuss more details about LIAPP’s features, Class Protection, and Source Code Encryption. Let us explain how they work and what are their effectiveness.
Read More