How to run android app in emulator by rewriting old databases?

前端 未结 3 1895
天涯浪人
天涯浪人 2021-01-28 18:15

When I always run app to test in emulator from Eclipse , by default it never uninstalls previous one. It will maintain previous copy of database and files of the same app and ru

3条回答
  •  情歌与酒
    2021-01-28 18:46

    You can have a command prompt window open, and before launching, execute:

    adb uninstall your.project.package
    

    when using adb install with the -r modifier, the app re-installs and its data is saved. I haven't found any place in Eclipse to change this configuration, but I think this is done inside the SDK's Ant tasks. Take a look at this class for more information

提交回复
热议问题