Add onStart hook to FlutterFragmentActivity (flutter/engine#6719)

Seems like this file was missed when onStart hooks were added recently in this pull request: https://github.com/flutter/engine/pull/5177
This commit is contained in:
David Guralnick
2019-01-07 14:16:06 -08:00
committed by matthew-carroll
parent 66be1dee05
commit d6a1bcc917

View File

@@ -101,6 +101,12 @@ public class FlutterFragmentActivity
super.onBackPressed();
}
}
@Override
protected void onStart() {
super.onStart();
eventDelegate.onStart();
}
@Override
protected void onStop() {