I'm facing a weird problem that is whenever I change a resource file ( layout file or xml file ) I need to clean and build project (rebuilding the project) so that I can see that change if I didn't do this and run the application ( not instance run means that I uninstall the apk and run the application) the changes won't appear.
I suspect that the problem may be from the stack of libraries I use (Dagger2,AndroidDataBinding,RxAndroid) because both Dagger2 and AndroidDataBinding generate files at compile time.
- I tried to disable the instance run but it didn't solve my problem
- I tried to uninstall the old apk and reinstall the newly generated apk with build apk but it also didn't solve it
What do you think causes this problem .. and do you have any solution for it ?