Conversation

electron is such a good way to make applications that some people i know are using signal in the android emulator because it's faster
6
246
Replying to and
It's written in Java and shipped as dex bytecode but Android has full support for compiling that to native code. It can do full ahead-of-time compilation on the device. The default upstream configuration is to start with JIT compilation, with PGO AOT based on that done later on.
2
1