react-native-browser icon indicating copy to clipboard operation
react-native-browser copied to clipboard

16 KB support

Open MadeinFrance opened this issue 1 month ago • 0 comments

Why it is needed?

Play Store reports:

Libraries that do not support 16 KB:

  • base/lib/arm64-v8a/libcronet.119.0.6045.31.so
  • base/lib/x86_64/libcronet.119.0.6045.31.so

See https://developer.android.com/guide/practices/page-sizes

Possible implementation

Replace the browser component with a 16KB-compatible alternative

Code sample

// Check if we're on Android and potentially affected by 16KB restrictions
const shouldUseFallback = Platform.OS === 'android' && Platform.Version >= 34;

MadeinFrance avatar Nov 11 '25 19:11 MadeinFrance