blob: 59e1b04c37f2045afc7c678a7ea619aa49b448f5 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package io.flutter.plugins.webviewflutterexample;
import androidx.annotation.NonNull;
import io.flutter.embedding.android.FlutterActivity;
public class DriverExtensionActivity extends FlutterActivity {
@Override
@NonNull
public String getDartEntrypointFunctionName() {
return "appMain";
}
}