blob: b9d2808a44865805c4d8bd841b6b00c135766d5b [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.imagepickerexample;
import android.os.Bundle;
import io.flutter.plugins.imagepicker.ImagePickerPlugin;
import io.flutter.plugins.videoplayer.VideoPlayerPlugin;
@SuppressWarnings("deprecation")
public class EmbeddingV1Activity extends io.flutter.app.FlutterActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ImagePickerPlugin.registerWith(
registrarFor("io.flutter.plugins.imagepicker.ImagePickerPlugin"));
VideoPlayerPlugin.registerWith(
registrarFor("io.flutter.plugins.videoplayer.VideoPlayerPlugin"));
}
}