How to tell if running on Kindle Fire

Is there a way to tell if the device you are running on is an Amazon device rather than just an android device?

The best I can do for you is reference: Platform Specific Code · React Native

In that link, there is this code example:

import {Platform} from 'react-native';

if (Platform.Version === 25) {
  console.log('Running on Nougat!');
}

I personally don’t have experience testing Expo on an Amazon device, but might be a good opportunity for a PR to the react-native codebase.

@glose hope this helps :frowning: sorry I don’t have a better answer.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.