Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect app is running on Kindle Fire

Tags:

kindle-fire

Does anyone know how to detect if the app is running on Kindle Fire ?

My app needs to turn off a few features if running on the Kindle Fire and I want to use the same build as Google Marketplace.

like image 495
Chris Avatar asked Nov 29 '11 10:11

Chris


1 Answers

You can read android.os.Build.MANUFACTURER and android.os.Build.MODEL. On a Kindle Fire 1st Generation they are 'Amazon' and 'Kindle Fire' respectively. For model codes of newer Kindle Fire devices, see Device and Feature Specifications on Amazon's developer site.

like image 112
Marek Stój Avatar answered Oct 01 '22 04:10

Marek Stój