I've downloaded an Android system application
source code.
When I import the project in eclipse and try to run it in the emulator it shows signature error
. I think this happens because the package name in manifest is suppossed to be different than any applications already installed in the phone, but when I try to change the package name in manifest file the autogenerated R.java file gets deleted.
Now my questions are
how can I avoid this Signature mismatch error?
how can I modify package name in manifest file so that R.java file doesn't get deleted?
Or how can I simply android System application from eclipse?