Evgeniy Mishustin
Evgeniy Mishustin

Reputation: 3804

Android Studio flows logcat with strange error message

For some reason logcat of my app is flawed with same error message:

com.google.android.apps.betterbug Package [my.package.name] reported as REPLACED, but missing application info. Assuming REMOVED.

I do not understand why this is started to happen and how to resolve it. Any help would be appreciated. The log message appears to be posted from different services:


com.android.systemui E  Package reported as REPLACED, but missing application info. Assuming REMOVED.
16:31:58.672  6708-6708  ActivityThread          com.android.systemui                 E  Package  reported as REPLACED, but missing application info. Assuming REMOVED.
16:32:40.116  3338-3338  ActivityThread          .ShannonImsService                   E  Package  reported as REPLACED, but missing application info. Assuming REMOVED.
16:32:40.117  3338-3338  ActivityThread          .ShannonImsService                   E  Package  reported as REPLACED, but missing application info. Assuming REMOVED.
16:33:34.033  5374-5374  ActivityThread          com.google.android.apps.turbo        E  Package  reported as REPLACED, but missing application info. Assuming REMOVED.
16:33:34.036  5374-5374  ActivityThread          com.google.android.apps.turbo        E  Package reported as REPLACED, but missing application info. Assuming REMOVED.
16:34:17.519  6226-6226  ActivityThread          com.google.android.partnersetup   

Tried reinstalling. Happens only on real device.

Upvotes: 25

Views: 3267

Answers (2)

Eric Parker
Eric Parker

Reputation: 17

Android Studio will helpfully try to uninstall an existing application instance on the target device, except it doesn't seem to be completely working anymore. Disconnect device, uninstall app via Play Store, restart device, reconnect, relaunch Android Studio. That cleared the errors for me. HTH.

Upvotes: 0

Colorado.Rob
Colorado.Rob

Reputation: 197

I don't know why it is occurring, but the following logcat filter gets me the results I am after:

package:mine -message:"reported as REPLACED"

Upvotes: -3

Related Questions