Fixed
Status Update
Comments
vi...@google.com <vi...@google.com> #2
to...@gmail.com <to...@gmail.com> #3
This is a follow up of another issue, Tor Norbye is aware and should the assignee, there's everything needed for him.
vi...@google.com <vi...@google.com>
to...@gmail.com <to...@gmail.com> #4
Still present in AGP 3.6 B1 :)
tn...@google.com <tn...@google.com> #6
This is now fixed by Change-Id: I0ba284f52e62015af95aff8c5e83539b5a888e81 ; the fix will go out in 4.0 Canary 8. Thanks for the report!
Description
This is the simplest reproduction step I could come up to
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
GlobalScope.launch {
test()
}
}
private suspend fun test() {
val v = getString(R.string.dummy)
Log.e("AAA", v)
}
}