2
I’m trying to make an app, like college job, for Android vulnerability diagnosis based on device metadata, like Android version, Kernel version, Build Number, etc.
I don’t fully understand the kernel version string that can be checked in the device settings.
On my device, for example (Samsung Win Duos), the kernel version string is:
Kernel version:
3.4.0-1565445
se.infra@SWDB2914 #1
SMP PEEMPT Wed Aug 13 03:54:31 KST 2014
Would someone like to tell me what exactly each of the elements of this string means?
Got it. After a lot of research I discovered that "Wed Aug 13 03:54:31 KST 2014" is the compilation date of the system (kernel). In an application this can be obtained through the constant Build.TIME. thank you very much for the information, helped a lot.
– Breno Macena
I’m glad you were able to figure it out, I’m glad you helped. ;)
– Luiz