General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Anony Mousse
Rob Braxman Tech
comments
Comments by "Anony Mousse" (@anon_y_mousse) on "Is TikTok Dangerous? Full App Analysis - Part 1 of 2" video.
One tiny correction here, but you don't actually have to write your code in Java for it to run on Android. In fact it looks like C# is the most popular language in use for Android. In general you would either use a compiler or some kind of conversion program that can convert the binary format you use into a DEX file. With ART they use dex2oat to convert DEX files to a proper binary for the system, but you can generate a proper binary yourself and run it, you just need to root the device. Since it's a from scratch implementation of the Java API, and DEX files aren't the same as zipped up class files like jar's are, Java itself isn't even directly compatible and requires some conversion.
2