react-native-malwarelytics
Version:
Malwarelytics for React Native protects your banking or fintech app from a broad range of mobile security threats with an industry-leading mobile threat intelligence solution.
19 lines (17 loc) • 446 B
text/typescript
/**
* Type of Android Auto connection.
*/
export enum AndroidAutoConnectionInfo {
/**
* The device is not connected to any car head unit.
*/
NOT_CONNECTED = "NOT_CONNECTED",
/**
* The app is natively running on a head unit (Android Automotive OS).
*/
CONNECTED_NATIVE = "CONNECTED_NATIVE",
/**
* The device is connected to a car head unit by projecting to it.
*/
CONNECTED_PROJECTION = "CONNECTED_PROJECTION",
}