-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Hi,
Thanks for this great library. I've been using it for a while and just updated to the latest release.
I noticed that my Nexus 5X is now showing up as:
Blackshark,Shark 1S,bullhead,7684MB,Phone,Qualcomm SDM845,1080x2160,420,arm64-v8a;armeabi-v7a;armeabi,27,3.2
but deeper in the csv, the info for the Nexus 5X shows up as follows:
LGE,Nexus 5X,bullhead,1813-2891MB,Phone,Qualcomm MSM8992,1080x1920,420,arm64-v8a;armeabi-v7a;armeabi,23;24;25;26;27,3.1;3.2
I see that the model code for the device is the same, so is the rest of the data really for the same device? How can I get the library to tell me Nexus 5X instaed of Shark 1S?
My code to pull the device data remains unchanged:
String man = Device.getManufacturer();
String model = Device.getModel();
String name = Device.getName();
Is there something I'm doing wrong that it's pulling the other device or is Blackshark code for LGE?
Thank you!