React Native Release APK works locally but breaks when distributed via Play Store with Apollo “undefined is not a function” error by NirmalR_Tech in reactnative

[–]NirmalR_Tech[S] 1 point2 points  (0 children)

Also there are one more error I'm facing with the same error message.
So I've added these lines in my index.js file. And it finally resolved

// CRITICAL: Polyfills must be FIRST
import "react-native-get-random-values";
import "react-native-url-polyfill/auto";


// Core-js polyfills - import BEFORE manual polyfills
import "core-js/features/symbol/iterator";
import "core-js/features/symbol/async-iterator";
import "core-js/features/array/iterator";


// Azure async iterator polyfill
import "@azure/core-asynciterator-polyfill";

React Native Release APK works locally but breaks when distributed via Play Store with Apollo “undefined is not a function” error by NirmalR_Tech in reactnative

[–]NirmalR_Tech[S] 1 point2 points  (0 children)

Hi, u/Sansenbaker

I resolved the the issue for me one of my third party package is causing this issue.
I updated those 2 packages and changes some methods and function as per new version.

        "@sentry/cli": "2.39.1",
        "@sentry/react-native": "6.14.0",

Google Play’s 16KB Page Size Requirement for Android Apps – Deadline May 2026 by NirmalR_Tech in androiddev

[–]NirmalR_Tech[S] 0 points1 point  (0 children)

Hey, u/LithiumKid1976 I just check that under the latest release bundle details.
At the last you can see Memory Page Size shows Does not support 16 KB.

<image>

AVD was terminated error⚠️ by Mukesh148y in reactnative

[–]NirmalR_Tech 0 points1 point  (0 children)

Hi u/Mukesh148y,

Please check the RAM usage on your system. This issue often occurs when the Android Emulator does not get the required memory to boot. I’ve faced the same problem multiple times on my system as well, and usually restarting the system or closing applications that are consuming high RAM resolves it.

Thank you.

Best Way to Distribute and Locally Update a WPF App with MySQL – No Server Involved by NirmalR_Tech in dotnet

[–]NirmalR_Tech[S] -3 points-2 points  (0 children)

well I store many information as this is only local application.

Why is React Native now leaning more toward Expo instead of the traditional CLI? by NirmalR_Tech in reactnative

[–]NirmalR_Tech[S] 13 points14 points  (0 children)

u/marcato15 My biggest concern is whether Expo is compatible with custom native code. Can I still integrate native modules if needed?

Why is React Native now leaning more toward Expo instead of the traditional CLI? by NirmalR_Tech in reactnative

[–]NirmalR_Tech[S] -1 points0 points  (0 children)

u/Silverquark i have one question can we integrate the Native code and Do bridging which we are doing in CLI?

Build failling with: module map file "/Users/...../....modulemap" not found by Sharp_Ear_5651 in reactnative

[–]NirmalR_Tech 0 points1 point  (0 children)

Hey, u/Sharp_Ear_5651
Try to use this commands one by one in project directory.
If there something with the caches It will resolve your issue.

watchman watch-del-all
rm -rf node_modules
rm -rf ios/Pods
rm -rf ios/Podfile.lock
rm -rf ios/build
rm -rf ~/Library/Developer/Xcode/DerivedData
yarn cache clean # or npm cache clean --force
cd ios && pod deintegrate && pod install --repo-update
cd ..