Hi,
I need to get the Serial Number from the Android Device. In Java i was supposed to get it with:
android.os.build.serial
But in Xamarin, i could not find it in:
Android.OS.Build.*
Does this depend on a minimum android version or is there any other way to find this serial number?
Thanks in regards,
Posts
Using the SDK greater than Version 3 I could find Android.OS.Build.Serial. In my experience be careful with your namespaces. Avoid using Android in any namespace.
Thanks, it was the SDK version indeed! 3 or greater it works!