Add onStart hook to FlutterFragmentActivity (#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 f2ea838b36
commit 8eccb860de
@@ -101,6 +101,12 @@ public class FlutterFragmentActivity
super.onBackPressed();
}
}
@Override
protected void onStart() {
super.onStart();
eventDelegate.onStart();
}
@Override
protected void onStop() {