Only call Activity.reportFullyDrawn on Lollipop or above (#28175)

This API requires the UPDATE_DEVICE_STATS permission on KitKat
This commit is contained in:
Jason Simmons 2019-02-25 11:39:17 -08:00 committed by GitHub
parent 751f119c93
commit 9406ebcbaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ public class MainActivity extends FlutterActivity {
@Override
public void onFirstFrame() {
// Report fully drawn time for Play Store Console.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
MainActivity.this.reportFullyDrawn();
}
MainActivity.this.getFlutterView().removeFirstFrameListener(this);