INNER CODE UNIT · JavaScript

authSessionIsNativelySupported

proyecto26/react-native-inappbrowser · utils.js:173

export function authSessionIsNativelySupported(): boolean {
  if (Platform.OS === 'android') {
    return false;
  }

  const versionNumber = parseInt(Platform.Version, 10);
  return versionNumber >= 11;
}

export const isAndroid = Platform.OS === 'android';

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…