blob: 5906a8940236537218d87f716657c95d0cc81398 [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.androidintentexample;
import android.os.Bundle;
import io.flutter.plugins.androidintent.AndroidIntentPlugin;
@SuppressWarnings("deprecation")
public class EmbeddingV1Activity extends io.flutter.app.FlutterActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
AndroidIntentPlugin.registerWith(
registrarFor("io.flutter.plugins.androidintent.AndroidIntentPlugin"));
}
}