react-native-device-info
Advanced tools
Comparing version 2.3.0 to 2.3.1
@@ -5,2 +5,5 @@ ## Release Notes | ||
### 2.3.1 | ||
* fix: add Huawei P30 devices to isNothc list (https://github.com/react-native-community/react-native-device-info/pull/734) | ||
### 2.3.0 | ||
@@ -7,0 +10,0 @@ * feat: AndroidX support (backwards/forwards compatible) (https://github.com/react-native-community/react-native-device-info/pull/733) |
@@ -92,2 +92,10 @@ /** | ||
brand: 'Huawei', | ||
model: 'P30 Lite', | ||
}, | ||
{ | ||
brand: 'Huawei', | ||
model: 'P30 Pro', | ||
}, | ||
{ | ||
brand: 'Huawei', | ||
model: 'Nova 3', | ||
@@ -94,0 +102,0 @@ }, |
{ | ||
"name": "react-native-device-info", | ||
"version": "2.3.0", | ||
"version": "2.3.1", | ||
"description": "Get device information using react-native", | ||
@@ -58,5 +58,5 @@ "main": "deviceinfo.js", | ||
"eslint": "^6.1.0", | ||
"flow-bin": "^0.102.0", | ||
"flow-bin": "^0.104.0", | ||
"husky": "^3.0.1", | ||
"lint-staged": "^9.2.0", | ||
"lint-staged": "^9.2.1", | ||
"np": "^5.0.3", | ||
@@ -63,0 +63,0 @@ "prettier": "^1.18.2", |
@@ -50,3 +50,3 @@ # react-native-device-info | ||
AndroidX is supported in a non-breaking / backwards-compatible why by using overrides in your `android/build.gradle` file's "ext" block | ||
AndroidX is supported in a non-breaking / backwards-compatible way by using overrides in your `android/build.gradle` file's "ext" block | ||
@@ -65,3 +65,3 @@ <details> | ||
mediaCompatVersion = '1.0.1' // Do not specify if using old libraries, specify '1.0.1' or similar for androidx.media:media dependency | ||
supportV4LibVersion = '1.0.0' // Do not specify if using old libraries, specify '1.0.0' or similar for androidx.legacy:legacy-support-v4 dependency | ||
supportV4Version = '1.0.0' // Do not specify if using old libraries, specify '1.0.0' or similar for androidx.legacy:legacy-support-v4 dependency | ||
} | ||
@@ -68,0 +68,0 @@ ... |
182268
1329