mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
dda2b82a0a
Summary: In https://github.com/facebook/react-native/pull/20602, I tried to make ReactActivity to extend AppCompatActivity per Google recommendation. But import failed, now ReactActivity extends FragmentActivity which is a parent class of AppCompatActivity and step forward to extend AppCompatActivity. Pull Request resolved: https://github.com/facebook/react-native/pull/22662 Reviewed By: mdvacca Differential Revision: D13505140 Pulled By: hramos fbshipit-source-id: d4edc8dc5c606c45811c1deddf5727a47ad484d8
18 lines
420 B
Java
18 lines
420 B
Java
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
package com.facebook.react;
|
|
|
|
/**
|
|
* @deprecated
|
|
* ReactFragmentActivity will be removed in 0.59 release.
|
|
* Use {@link ReactActivity} instead.
|
|
*/
|
|
@Deprecated
|
|
public abstract class ReactFragmentActivity extends ReactActivity {
|
|
}
|