Skip to content

Commit

Permalink
Fix onActivityResult bug
Browse files Browse the repository at this point in the history
  • Loading branch information
qiuxiang committed Oct 14, 2021
1 parent 22db079 commit 01e3b2b
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import io.flutter.embedding.android.FlutterActivity

open class AndroidWindowActivity : FlutterActivity() {
override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
super.onActivityResult(requestCode, resultCode, data)
app?.mainApi?.onActivityResult()
}
}

0 comments on commit 01e3b2b

Please sign in to comment.