Reputation: 4378
I downloaded the source code of OI Notepad and did some modifications to it. And then made an .apk file out of it. But when I try to install the .apk it shows
This is a system application.
Do you still want to replace it?
When i say yes it moves forward but does not install it.. I have this post My application tries replace another my application and the answer given there the package name of both the apps cannot be same. But is there any way in which I can manage to install modified OI Notepad without any hassles of replacing the older one. It happens in Emulator.. Thanks
Upvotes: 1
Views: 3309
Reputation: 3488
If you are using eclipse you can right click the package tree and use the refactor option to quickly change the package. This, in most cases, correctly updates the Application Manifest for you. This 'should' resolve the error you are having keeping in mind that you will now have two versions of the application so it may be in your best interest to change the application name of your custom version so you can easily distinguish between the two.
Upvotes: 1