GertjanReynaert / react-native-device

A UIDevice class wrapper for React Native
179 stars 34 forks source link

React Native Android Support #16

Open kkjdaniel opened 9 years ago

kkjdaniel commented 9 years ago

Support for React Native Android, using the Android Build class.

String _OSVERSION = System.getProperty("os.version");
String _RELEASE = android.os.Build.VERSION.RELEASE;
String _DEVICE = android.os.Build.DEVICE; 
String _MODEL = android.os.Build.MODEL; 
String _PRODUCT = android.os.Build.PRODUCT; 
String _BRAND = android.os.Build.BRAND; 
String _DISPLAY = android.os.Build.DISPLAY; 
String _CPU_ABI = android.os.Build.CPU_ABI; 
String _CPU_ABI2 = android.os.Build.CPU_ABI2; 
String _UNKNOWN = android.os.Build.UNKNOWN; 
String _HARDWARE = android.os.Build.HARDWARE;
String _ID = android.os.Build.ID; 
String _MANUFACTURER = android.os.Build.MANUFACTURER; 
String _SERIAL = android.os.Build.SERIAL; 
String _USER = android.os.Build.USER; 
String _HOST = android.os.Build.HOST;

New tagline for repo : "A wrapper for the native UIDevice & Android Build class"

@GertjanReynaert

Mokto commented 9 years ago

Hi !

@kkjdaniel Any update on this ?

Thank you for your great work.

kkjdaniel commented 9 years ago

Hello @Mokto

I have been pretty busy recently, I will be getting back to work on this quite soon, should just be a case of testing it.

Thanks

atticoos commented 8 years ago

+1

drewtunes commented 8 years ago

+1

dustinblackman commented 8 years ago

Any status on this? Or your WIP branch? I can see about finishing it up.

jaggs6 commented 8 years ago

+1

kkjdaniel commented 8 years ago

There is a branch here https://github.com/kkjdaniel/react-native-device

mikelambert commented 8 years ago

@GertjanReynaert is this project still alive?

joncursi commented 8 years ago

Bump.

Is Android support still in the works?