I basically ignored it. It only appeared during debugging and compilation. It would not appear during normal APP overlay installation. Similar errors would appear in EC in the past. Did you use Instant Run?
It means that your call is called near the end of the activity life cycle. It is estimated that one of your asynchronous messages (the message that triggers commit) arrives at the wrong time. You should handle this situation , when you cannot commit, you need to skip it.
I basically ignored it. It only appeared during debugging and compilation. It would not appear during normal APP overlay installation. Similar errors would appear in EC in the past. Did you use Instant Run?
It means that your call is called near the end of the activity life cycle.
It is estimated that one of your asynchronous messages (the message that triggers commit) arrives at the wrong time. You should handle this situation , when you cannot commit, you need to skip it.