Home > Software design >  Failed to start several time. Restore it by clearing its history. Android Project
Failed to start several time. Restore it by clearing its history. Android Project

Time:03-24

I have no idea what causing the error in my android project. The error "Failed to start several time. Restore it by clearing its history." happen in some of the mobile manufacturer like Oppo, Samsung etc... And I found it only happen once the app uninstall then re-install back through PlayStore. It also happen to those after updated the app.

Error Message

It will only open up once I clear its data. Anyone have idea about this?

It should be work as others app even though I uninstall and reinstall back for testing purpose, this happen to part of our client as well.

CodePudding user response:

In AndroidManifest Change

android:allowBackup="false"

Hope it will solve the problem

  • Related