Why I am Getting Error 'Channel is unrecoverably broken and will be disposed!'

AndroidAndengine

Android Problem Overview


When I try to launch my AndEngine Activity, I get this error:

ERROR/InputDispatcher(21374): channel '4122e148 my.package.AcGame (server)' ~ Channel is unrecoverably broken and will be disposed!

The app doesn't crash, but there's a black screen and the device doesn't react to pressing the 'back' or 'home' buttons.

Does anyone know what the problem is?

Android Solutions


Solution 1 - Android

One of the most common reasons I see that error is when I am trying to display an alert dialog or progress dialog in an activity that is not in the foreground. Like when a background thread that displays a dialog box is running in a paused activity.

Solution 2 - Android

I think that You have memory leaks somewhere. You can find tips to avoid leaking memory here. Also you can learn about tools to track it down here.

Solution 3 - Android

Have you used another UI thread? You shouldn't use more than 1 UI thread and make it look like a sandwich. Doing this will cause memory leaks.

I have solved a similar issue 2 days ago...

To keep things short: The main thread can have many UI threads to do multiple works, but if one sub-thread containing a UI thread is inside it, The UI thread may not have finished its work yet while it's parent thread has already finished its work, this causes memory leaks.

For example...for Fragment & UI application...this will cause memory leaks.

getActivity().runOnUiThread(new Runnable(){

   public void run() {//No.1
			
  ShowDataScreen();

getActivity().runOnUiThread(new Runnable(){

	public void run() {//No.2
			
Toast.makeText(getActivity(), "This is error way",Toast.LENGTH_SHORT).show();
			
	}});// end of No.2 UI new thread
			
}});// end of No.1 UI new thread

My solution is rearrange as below:

getActivity().runOnUiThread(new Runnable(){

   public void run() {//No.1
			
ShowDataScreen();
			
}});// end of No.1 UI new thread 		

getActivity().runOnUiThread(new Runnable(){

   public void run() {//No.2
			
Toast.makeText(getActivity(), "This is correct way",Toast.LENGTH_SHORT).show();
			
}});// end of No.2 UI new thread

for you reference.

I am Taiwanese, I am glad to answer here once more.

Solution 4 - Android

I got similar error (my app crashes) after I renamed something in strings.xml and forgot to modify other files (a preference xml resource file and java code).

IDE (android studio) didn't showed any errors. But, after I repaired my xml files and java code, app ran okay. So, maybe there are some small mistakes in your xml files or constants.

Solution 5 - Android

You can see the source code about this output here:

void InputDispatcher::onDispatchCycleBrokenLocked(
        nsecs_t currentTime, const sp<Connection>& connection) {
    ALOGE("channel '%s' ~ Channel is unrecoverably broken and will be disposed!",
            connection->getInputChannelName());
    CommandEntry* commandEntry = postCommandLocked(
            & InputDispatcher::doNotifyInputChannelBrokenLockedInterruptible);
    commandEntry->connection = connection;
}

It's cause by cycle broken locked...

Solution 6 - Android

I had the same problem. To solve the error: Close it on the emulator and then run it using Android Studio.

The error happens when you try to re-run the app when the app is already running on the emulator.

Basically the error says - "I don't have the existing channel anymore and disposing the already established connection" as you have run the app from Android Studio again.

Solution 7 - Android

I had the same problem but mine was Due To an Android database memory leak. I skipped a cursor. So the device crashes so as to fix that memory leak. If you are working with the Android database check if you skipped a cursor while retrieving from the database

Solution 8 - Android

I had the same problem. Mine was due to a third jar, but the logcat did not catch the exception, i solved by update the third jar, hope these will help.

Solution 9 - Android

As I faced this error, somewhere in your code your funcs or libraries that used run on different threads, so try to call all code on the same thread , it fixed my problem.

> If you call methods on WebView from any thread other than your app's UI thread, it can cause unexpected results. For example, if your app uses multiple threads, you can use the runOnUiThread() method to ensure your code executes on the UI thread:

Google reference link

Solution 10 - Android

It's obvious this creeps up due to many issues. For me, I was posting several OneTimeWorkRequest, each accessing a single room database, and inserting into a single table.

Making the DAO functions suspended, and calling them within the coroutine scope of the worker fixed this for me.

Solution 11 - Android

I was having the same problem too. In my case was caused when trying to reproduce videos with a poor codification (demanded too much memory). This helped me to catch the error and request another version of the same video. https://stackoverflow.com/a/11986400/2508527

Solution 12 - Android

It happened for me as well while running a game using and-engine. It was fixed after i added the below code to my manifest.xml. This code should be added to your mainactivity.

android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|mcc|mnc"

Solution 13 - Android

Reading through all contributions, it looks like many different origins exhibit cause this same problem symptoms.

In my case for instance - I got this problem as soon as I added

android:progressBackgroundTintMode="src_over"

to my progress bar properties. I think the GUI designer of ADT is known for several bugs. Hence I assume this is one of them. So if you encounter similar problem symptoms (that just do not make sense) after playing with your GUI setup, just try to roll back what you did and undo your last GUI modifications.

Just press Ctrl+z with the recently modified file on screen.

Or:

The Version Control tool could be helpful. Open the Version Control panel - choose Local Changes tab and see recently modified (perhaps .xml) files.

Right click some most suspicious one and click Show Diff. Then just guess which modified line could be responsible.

Good luck :)

Solution 14 - Android

In my case these two issue occurs in some cases like when I am trying to display the progress dialog in an activity that is not in the foreground. So, I dismiss the progress dialog in onPause of the activity lifecycle. And the issue is resolved.

Cannot start this animator on a detached view! reveal effect BUG

ANSWER: https://stackoverflow.com/questions/26819429/cannot-start-this-animator-on-a-detached-view-reveal-effect

Why I am Getting Error 'Channel is unrecoverably broken and will be disposed!

ANSWER: https://stackoverflow.com/questions/12459719/why-i-am-getting-error-channel-is-unrecoverably-broken-and-will-be-disposed

@Override
protected void onPause() {
    super.onPause();
    dismissProgressDialog();

}

private void dismissProgressDialog() {
    if(progressDialog != null && progressDialog.isShowing())
        progressDialog.dismiss();
}

Solution 15 - Android

I had this issue and the cause was actually a NullPointerException. But it was not presented to me as one!

my Output: screen was stuck for a very long period and ANR

My State : the layout xml file was included another layout, but referenced the included view without giving id in the attached layout. (i had two more similar implementations of the same child view, so the resource id was created with the given name)

Note : it was a Custom Dialog layout, so checking dialogs first may help a bit

Conclusion : There is some memory leak happened on searching the id of the child view.

Solution 16 - Android

This error occurred in case of memory leak. For example if you have any static context of an Android component (Activity/service/etc) and its gets killed by system.

Example: Music player controls in notification area. Use a foreground service and set actions in the notification channel via PendingIntent like below.

Intent notificationIntent = new Intent(this, MainActivity.class);
        notificationIntent.setAction(AppConstants.ACTION.MAIN_ACTION);
        notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
                | Intent.FLAG_ACTIVITY_CLEAR_TASK);
        PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
                notificationIntent, 0);

        Intent previousIntent = new Intent(this, ForegroundService.class);
        previousIntent.setAction(AppConstants.ACTION.PREV_ACTION);
        PendingIntent ppreviousIntent = PendingIntent.getService(this, 0,
                previousIntent, 0);

        Intent playIntent = new Intent(this, ForegroundService.class);
        playIntent.setAction(AppConstants.ACTION.PLAY_ACTION);
        PendingIntent pplayIntent = PendingIntent.getService(this, 0,
                playIntent, 0);

        Intent nextIntent = new Intent(this, ForegroundService.class);
        nextIntent.setAction(AppConstants.ACTION.NEXT_ACTION);

        Bitmap icon = BitmapFactory.decodeResource(getResources(),
                R.drawable.ic_launcher);

        NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
        String NOTIFICATION_CHANNEL_ID = "my_channel_id_01";

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationChannel notificationChannel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, "My Notifications", NotificationManager.IMPORTANCE_HIGH);

            // Configure the notification channel.
            notificationChannel.setDescription("Channel description");
            notificationChannel.enableLights(true);
            notificationChannel.setLightColor(Color.RED);
            notificationChannel.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);
            notificationChannel.setVibrationPattern(new long[]{0, 1000, 500, 1000});
            notificationChannel.enableVibration(true);
            notificationManager.createNotificationChannel(notificationChannel);
        }

        NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID);
        Notification notification = notificationBuilder
                .setOngoing(true)
                .setAutoCancel(true)
                .setWhen(System.currentTimeMillis())
                .setContentTitle("Foreground Service")
                .setContentText("Foreground Service Running")
                .setSmallIcon(R.drawable.ic_launcher)
                .setLargeIcon(Bitmap.createScaledBitmap(icon, 128, 128, false))
                .setContentIntent(pendingIntent)
                .setPriority(NotificationManager.IMPORTANCE_MAX)
                .setCategory(Notification.CATEGORY_SERVICE)
                .setTicker("Hearty365")
                .build();
        startForeground(AppConstants.NOTIFICATION_ID.FOREGROUND_SERVICE,
                notification);

And if this notification channel get broken abruptly (may be by system, like in Xiomi devices when we clean out the background apps), then due to memory leaks this error is thrown by system.

Solution 17 - Android

For me it was caused by a splash screen image that was too big (over 4000x2000). The problem disappeared after reducing its dimensions.

Solution 18 - Android

Just Try to Invalidate the IDE cached and restart. This wont fix the issue. But in my case doing this revealed the possible crash

Solution 19 - Android

Please check you Realm entity class.

If you declare variable as lateinit var and you try to check that uninitialized variable check with isNullOrEmpty() return "Channel is unrecoverably broken and will be disposed!"

Solution 20 - Android

In my case, I was using Glide library and the image passed to it was null. So it was throwing this error. I put a check like this:

if (imageData != null) {
    // add value in View here 
}

And it worked fine. Hope this helps someone.

Solution 21 - Android

I got same logcat message, just realize that string.xml value of array cannot be number/digit, but only text/alphabet is allowed.

Solution 22 - Android

In my case this error is happening because of not connected to firebase firestore but using the same.

To rectify the issue please go to Tools-> Firebase

when a window will open on RHS choose the options to -> Connect your app to Firebase -> Add Cloud Firestore to your app

Solution 23 - Android

Check your ViewModel class and not finding any issue then try to comment code where you using launch or withContext.

In my case, I commented on code where I am using launch or withContext and it worked my app is running normally.

Solution 24 - Android

I had a kind of issue you described. In my case it happened only in release builds. It was caused by the obfuscation: native methods crashed silently on FindClass or GetMethodID call cuz the names were obfuscated. Editing proguard-rules worked out!

Solution 25 - Android

The issue for me was I havent defined the instance of an Activity.

Eg:

> Myclass my; > > onCreate() { > > my.getData(); }

Instead of: > Myclass my; > > onCreate() { > > my = new Myclass(); > my.getData(); }

This is weird as Studio has to give some good defining error message.

Solution 26 - Android

In my case I was setting value in background thread viewModelScope.launch(Dispatchers.IO) { } so app was crashing solution in my case I was removed (Dispatchers.IO). viewModelScope.launch{ }

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuncle LemView Question on Stackoverflow
Solution 1 - AndroidLou MordaView Answer on Stackoverflow
Solution 2 - AndroidRoman BlackView Answer on Stackoverflow
Solution 3 - AndroidJackie_HungView Answer on Stackoverflow
Solution 4 - Androidishitcno1View Answer on Stackoverflow
Solution 5 - AndroidcodezjxView Answer on Stackoverflow
Solution 6 - AndroidKapil BhagiaView Answer on Stackoverflow
Solution 7 - AndroidamadosiView Answer on Stackoverflow
Solution 8 - AndroidyangzxView Answer on Stackoverflow
Solution 9 - AndroidHamed JalilianiView Answer on Stackoverflow
Solution 10 - AndroidMatthew WoodView Answer on Stackoverflow
Solution 11 - AndroidDavid Martínez PérezView Answer on Stackoverflow
Solution 12 - AndroidmallikView Answer on Stackoverflow
Solution 13 - AndroidSold OutView Answer on Stackoverflow
Solution 14 - AndroidjazzbpnView Answer on Stackoverflow
Solution 15 - AndroidBlue_AlienView Answer on Stackoverflow
Solution 16 - AndroidAkkiView Answer on Stackoverflow
Solution 17 - AndroidDominique LorreView Answer on Stackoverflow
Solution 18 - AndroidRAINAView Answer on Stackoverflow
Solution 19 - AndroidKishor PatilView Answer on Stackoverflow
Solution 20 - AndroidAdnan AfzalView Answer on Stackoverflow
Solution 21 - AndroidLBIRD S.E.View Answer on Stackoverflow
Solution 22 - AndroidKeshav KumarView Answer on Stackoverflow
Solution 23 - AndroidiamkdblueView Answer on Stackoverflow
Solution 24 - AndroidololoView Answer on Stackoverflow
Solution 25 - AndroidPrajwal WaingankarView Answer on Stackoverflow
Solution 26 - AndroidSurendra SinghView Answer on Stackoverflow