UNPKG

freerasp-react-native

Version:

React Native plugin for improving app security and threat monitoring on Android and iOS mobile devices.

22 lines (21 loc) 591 B
/** * Interface representing base build properties configuration. */ export interface PluginConfigType { /** * Interface representing available configuration for Android native build properties. * @platform android */ android?: PluginConfigTypeAndroid; } /** * Interface representing available configuration for Android native build properties. * @platform android */ export interface PluginConfigTypeAndroid { /** * Override the default `minSdkVersion` version number in **build.gradle**. * */ minSdkVersion?: number; R8Version?: string; }