Android Instant Run をテスト実行します。テストのために、Activity の onResume() に次の行を追加しました。
Toast.makeText(this, "test123", Toast.LENGTH_SHORT).show();
これで、トーストのテキストを変更して再構築すると、通知が表示されます
"Instant Run detected that a resource referenced from the AndroidManifest.xml file has changed"
ここで何が起こっているのか誰か説明できますか? リソースは変更せず、Activity Java ファイルの文字列リテラルのみを変更しました。(私は Android で文字列リソースを使用する必要があることを認識しています)。