0

How can I get Tv device model number(platform - Android and iOS).

Example: I'm discovering Tv's on the local network.And I get 22PFK4109/12 or something similar for my Phillips TV.

Is there any similar libraries available ?

Thanks.

pVas94
  • 31
  • 3

1 Answers1

0

try this:

Link

this will give you the model like Philips

see also:

 String brand = Build.BRAND; // for getting BrandName
 String model = Build.MODEL; // for getting Model of the device
Yoni
  • 1,346
  • 3
  • 16
  • 38
  • There is a misunderstanding. I would like to connect to the TV with an android device(Phone,tablet) and get the TV model number. – pVas94 May 31 '16 at 07:20
  • ok ,so the most close way is to get resolution from screen like 1920X1080. you can't get data from tv. – Yoni May 31 '16 at 07:32