Giter VIP home page Giter VIP logo

Comments (12)

bashen1 avatar bashen1 commented on September 28, 2024

same issue

most in Android 10 and Android 12

from react-native-netinfo.

bashen1 avatar bashen1 commented on September 28, 2024

Have you solved it? @AuroPick

from react-native-netinfo.

shubhamguptadream11 avatar shubhamguptadream11 commented on September 28, 2024

We are also experiencing same crash only in Android 13. @AuroPick Did you solved it?

I checked the code we already have try..catch block in requestNetwork function which will safeguard app crash. But since this exception is thrown from ConnectivityManger which is a part of android framework. We need to find in what case TooManyRequest are sent. And that too only in Android 13.

from react-native-netinfo.

shubhamguptadream11 avatar shubhamguptadream11 commented on September 28, 2024

I am able to repro this crash on sample Android App by calling registDefaultNetwork function 101 times.

        for (i in 0..101) { // Adjust the loop count as necessary to trigger the exception
            try {
                connectivityManager.registerDefaultNetworkCallback(object : NetworkCallback() {
                    override fun onAvailable(network: Network) {
                        Log.d(TAG, "Network available: iteration $i $network")
                    }
                })
            } catch (e: java.lang.Exception) {
                Log.e(TAG, "Request failed at iteration $i", e)
                break
            }
        }

It breaks with same stack trace on 99th iteration.

Then I checked net info code here we are calling connectivityManager.registerDefaultNetworkCallback code in register method which is begin called from initialise method.

initialize method is overriden method from ReactContextBaseJavaModule. Which will be called when NativeModule is being initialzed.

So far this is my findings let us know if anyone finds anything.

from react-native-netinfo.

shubhamguptadream11 avatar shubhamguptadream11 commented on September 28, 2024

One solution we might try is by ensuring that the module is initialised only once across all instances.
Something like this

    @Override
    public synchronized void initialize() {
        super.initialize();
        if (isInitialized) {
            Log.d(TAG, "NetInfoModule already initialized");
            return;
        }
        Log.d(TAG, "NetInfoModule initializing");
        isInitialized = true;
        register();
    }

from react-native-netinfo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.