You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#### Migrating from flipper-plugin-rn-performance-android
121
+
122
+
You might have previously installed `flipper-plugin-rn-performance-android`. This is now deprecated, as `react-native-flipper-performance-plugin` has autolinking and cross-platform support.
123
+
124
+
You also need to run these steps:
125
+
126
+
Uninstall the package:
127
+
128
+
```
129
+
yarn remove flipper-plugin-rn-performance-android
130
+
```
131
+
132
+
Then **remove** those lines in `./android/settings.gradle`:
133
+
134
+
```gradle
135
+
include ':flipper-plugin-rn-performance-android'
136
+
project(':flipper-plugin-rn-performance-android').projectDir = new File(rootProject.projectDir, '../node_modules/flipper-plugin-rn-performance-android')
1. This plugin does not work with Expo Go, since it adds native code. You can use an Expo [custom-dev-client](https://docs.expo.dev/development/getting-started/) instead.
107
148
@@ -151,31 +192,6 @@ if (__DEV__) {
151
192
152
193
With DevTools you can easily determine why your app is taking too much time for a particular task, most importantly you can find out if you are re-rendering too often. Especially with lists, this can quickly become a knitting trap. Optimize your code and measure the FPS afterwards to get a decent score.
153
194
154
-
#### Migrating from flipper-plugin-rn-performance-android
155
-
156
-
You might have previously installed `flipper-plugin-rn-performance-android`. This is now deprecated, as `react-native-flipper-performance-plugin` has autolinking and cross-platform support.
157
-
158
-
You also need to run these steps:
159
-
160
-
Uninstall the package:
161
-
162
-
```
163
-
yarn remove flipper-plugin-rn-performance-android
164
-
```
165
-
166
-
Then **remove** those lines in `./android/settings.gradle`:
167
-
168
-
```gradle
169
-
include ':flipper-plugin-rn-performance-android'
170
-
project(':flipper-plugin-rn-performance-android').projectDir = new File(rootProject.projectDir, '../node_modules/flipper-plugin-rn-performance-android')
0 commit comments