holding references to Remote objects and using them in loops. And then found that native HEAP continued to grow
I thought the system would auto gc, but it didn't
example:
fun test() {
remote.call(object: ICallback.Stub {
override fun onCall(available: Boolean) {
.........
}
})
}
loop invoke test()