Skip to content

pixell/react-native-imei

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

react-native-imei

A react native library for Android, will return IMEI when app is being run on an Android device and has READ_PHONE_STATE permission.

Imei is guaranteed to be non-empty string, otherwise you will get an exception.

Exception is thrown if:

  • Permission is missing
  • Fails to get non-empty imei
  • Device is not Android device

Installation

npm install react-native-imei --save

# or with yarn
yarn add react-native-imei

# Remember to link after install!
react-native link react-native-imei

Based on rebeccahughes/react-native-device-info

Examples

// JavaScript
const IMEI = require('react-native-imei');
IMEI.getImei();
; ClojureScript
(def imei-module (js/require "react-native-imei"))
(def imei (.getImei imei-module))

About

Get IMEI in React Native apps

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 82.5%
  • JavaScript 17.5%