I published app recently on google play store, after i published the app i checked the code again and i saw that there is try-catch block like this:
try {
// .... do something
} catch (Exception e) {
// ... do something to handle the error
e.printStackTrace();
}
so i forgot this statement: e.printStackTrace();
I wonder wether this Can affect anything after google accept this app and it is alive on store?
Should I remove them and republish it again?