Commit da64be72 authored by Mehdi Achour's avatar Mehdi Achour

chore: prepare for 0.19.0

parent 8cd63a9a
......@@ -2,6 +2,10 @@
### next
### 0.19.0
* Add `getInstallReferrer` (https://github.com/rebeccahughes/react-native-device-info/pull/344)
### 0.18.0
* Add `getBatteryLevel` (https://github.com/rebeccahughes/react-native-device-info/pull/359)
......
Pod::Spec.new do |s|
s.name = "RNDeviceInfo"
s.version = "0.18.0"
s.version = "0.19.0"
s.summary = "Device Information for react-native"
s.homepage = "https://github.com/rebeccahughes/react-native-device-info"
......
......@@ -19,6 +19,7 @@ export function getDeviceLocale(): string;
export function getDeviceCountry(): string;
export function getTimezone(): string;
export function getInstanceID(): string;
export function getInstallReferrer(): string;
export function isEmulator(): boolean;
export function isTablet(): boolean;
export function getFontScale(): number;
......
......@@ -19,6 +19,7 @@ declare module.exports: {
getDeviceCountry: () => string,
getTimezone: () => string,
getInstanceID: () => string,
getInstallReferrer: () => string,
isEmulator: () => boolean,
isTablet: () => boolean,
getFontScale: () => number,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment