diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-17 20:21:11 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-17 20:21:11 -0600 |
commit | a13f9bf0916f80417ea20cc98ad86fe51f1a60dd (patch) | |
tree | f124df035d35e80ce287c9ee87b034e2e8382b16 /android/app/src/release/java/com | |
parent | b449ab842fc64177f8ba1e17199911f02cb99526 (diff) | |
download | voidsky-a13f9bf0916f80417ea20cc98ad86fe51f1a60dd.tar.zst |
Upgrade to react-native 0.71.0
Diffstat (limited to 'android/app/src/release/java/com')
-rw-r--r-- | android/app/src/release/java/com/xyz/blueskyweb/app/ReactNativeFlipper.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/android/app/src/release/java/com/xyz/blueskyweb/app/ReactNativeFlipper.java b/android/app/src/release/java/com/xyz/blueskyweb/app/ReactNativeFlipper.java new file mode 100644 index 000000000..2c66eae53 --- /dev/null +++ b/android/app/src/release/java/com/xyz/blueskyweb/app/ReactNativeFlipper.java @@ -0,0 +1,18 @@ +/** + * Copyright (c) Meta Platforms, Inc. and affiliates. + * + * <p>This source code is licensed under the MIT license found in the LICENSE file in the root + * directory of this source tree. + */ +package xyz.blueskyweb.app; +import android.content.Context; +import com.facebook.react.ReactInstanceManager; +/** + * Class responsible of loading Flipper inside your React Native application. This is the release + * flavor of it so it's empty as we don't want to load Flipper. + */ +public class ReactNativeFlipper { + public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { + // Do nothing as we don't want to initialize Flipper on Release. + } +} \ No newline at end of file |