Android: Odd NameNotFoundException after app exit

After installing ADT r22, I get this exception in LogCat every time I close the application:

E/LuckyLauncherView(227): in setViewEveryArea() E/LuckyLauncherView(227): android.content.pm.PackageManager$NameNotFoundException: ComponentInfo{com.doptrixevo/com.doptrixevo.menu.WelcomeScreen} E/LuckyLauncherView(227): at android.app.ApplicationPackageManager.getActivityInfo(ApplicationPackageManager.java:222) E/LuckyLauncherView(227): at android.app.ApplicationPackageManager.getActivityIcon(ApplicationPackageManager.java:612) E/LuckyLauncherView(227): at com.android.launcher2.lucky.LuckyLauncherView.setViewEveryArea(LuckyLauncherView.java:932) E/LuckyLauncherView(227): at com.android.launcher2.lucky.LuckyLauncherView.updateView(LuckyLauncherView.java:513) E/LuckyLauncherView(227): at com.android.launcher2.lucky.LuckyLauncherView$7.handleMessage(LuckyLauncherView.java:1429) E/LuckyLauncherView(227): at android.os.Handler.dispatchMessage(Handler.java:99) E/LuckyLauncherView(227): at android.os.Looper.loop(Looper.java:132) E/LuckyLauncherView(227): at android.app.ActivityThread.main(ActivityThread.java:4123) E/LuckyLauncherView(227): at java.lang.reflect.Method.invokeNative(Native Method) E/LuckyLauncherView(227): at java.lang.reflect.Method.invoke(Method.java:491) E/LuckyLauncherView(227): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:864) E/LuckyLauncherView(227): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:622) E/LuckyLauncherView(227): at dalvik.system.NativeStart.main(Native Method) 

The strange thing about this error is that it refers to com.doptrixevo , while the application I am running is com.doptrix
com.doptrixevo is my other application that is not installed on this device. There are no references to com.doptrixevo in this project or in any libraries used. I even tried to find the word "doptrixevo" in the project folder and did not find anything.
I tried to clean, recreate the project - this does not help.
My application is working fine, but this error bothers me. Where did it come from and how can I fix it?

+4
source share
1 answer

Have you previously installed com.doptrixevo on this device and then uninstalled it? It seems that whatever program you use expects to find the application (shortcut or widget) when redrawing the main screen and is surprised to find that it is no longer there.

If it is a third-party trigger, you can record an error report.

+2
source

Source: https://habr.com/ru/post/1483335/


All Articles