I'm giving Android Instant Run a test run. For testing, I just added the following line to the onResume() of my Activity:
Toast.makeText(this, "test123", Toast.LENGTH_SHORT).show();
Now, when I change the text of the toast and rebuild, it will tell me
"Instant Run detected that a resource referenced from the AndroidManifest.xml file has changed"
Can anyone explain what's going on here? I didn't change any resource, just the string literal in the Activity java file. ( I'm aware that I should use string resources in Android btw).