From 1c5938eae7c30bdfe679404f50f2c46fc1ce0eb4 Mon Sep 17 00:00:00 2001 From: Radek Czemerys Date: Thu, 20 Feb 2020 14:42:02 -0800 Subject: [PATCH] chore: tweak missing RCTAnimation warning message (#28139) Summary: As we don't link modules manually anymore it's better to point the user in another direction when they face this issue. ## Changelog [Internal] [Changed] - tweak missing RCTAnimation warning message Pull Request resolved: https://github.com/facebook/react-native/pull/28139 Reviewed By: cpojer Differential Revision: D20009264 Pulled By: hramos fbshipit-source-id: 114cae4fe908186eab3d8d9e79c2016015406821 --- Libraries/Animated/src/NativeAnimatedHelper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Animated/src/NativeAnimatedHelper.js b/Libraries/Animated/src/NativeAnimatedHelper.js index 7e9695f538f..8dac3579f90 100644 --- a/Libraries/Animated/src/NativeAnimatedHelper.js +++ b/Libraries/Animated/src/NativeAnimatedHelper.js @@ -292,7 +292,7 @@ function shouldUseNativeDriver(config: AnimationConfig | EventConfig): boolean { 'animated module is missing. Falling back to JS-based animation. To ' + 'resolve this, add `RCTAnimation` module to this app, or remove ' + '`useNativeDriver`. ' + - 'More info: https://github.com/facebook/react-native/issues/11094#issuecomment-263240420', + 'Make sure to run `pod install` first. Read more about autolinking: https://github.com/react-native-community/cli/blob/master/docs/autolinking.md', ); _warnedMissingNativeAnimated = true; }