Hi,
I’m looking for a way to, at run time, determine if I’m running on a Kindle Fire or not.
Why? My screen is losing some data past 1040 due to Kindle Fire screen size.
Probably not the best way of solving my problem, but possibly the quickest for now
There’s a single place in my code where I’d like to say:
if device.type = “Kindle Fire” then
max_x = 1040;
Although there are probably better ways, I’m not yet comfortable with the whole scaling approach,
and I just need to get a copy of my app running on a Kindle Fire quickly, so I can use it during a
performance on Thurdsay
At present, I’m going to hard code the “yes, it’s a Kindle”, build, deploy, and then remove the line …
which is kludgey, but it works.
thanks,
Stan