Problem : I have uploaded an apk on google play store, then i have changed some code which is, deleted a service tag from manifest because i did not needed it more.
<service
android:name=".Services.MyService"
android:exported="false" />
I have removed above code from manifest but I didnot deleted my class from package ".Services" for future use and then i created a signed apk. I have done following things.
- Clean project , rebuild again.
- Checked V1 and V2 while generating Apk.
- Only checked V1 and generated Apk.
- Only checkd V2 and generated Apk.
Everything is fine, I have incremented build version and done every other thing which i found on internet but still got this error. Please take a look on error received image.
Then I added service tag again in manifest and generated apk again. My issue resolved. Its strange, I want to know that why it happened? how i will handle if I made any change? and please check these images --> https://i.stack.imgur.com/BVNPZ.jpg for my manifest, directories and exception which was seen in logcat during installation,. Thanks