Skip to content

Commit 44aa18b

Browse files
committed
fix: flipper
1 parent 44d321e commit 44aa18b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@
9696

9797
## Development
9898

99-
目前在 MacOS 下开发,在 iOS 为 13+ 的 iPhone Simulator/iPhone 12、Android 9.0 的 AVD 模拟器/Mi Phone 均编译成功运行。
99+
目前在 MacOS 下开发,在 iOS 为 14+ 的 iPhone Simulator/iPhone 14、Android 9.0 的 AVD 模拟器/Mi Phone 均编译成功运行。
100100

101-
- 安装 NodeJS(16.0+)、Yarn、[Watchman](https://reactnative.cn/docs/environment-setup)
101+
- 安装 NodeJS(18.0+)、Yarn、[Watchman](https://reactnative.cn/docs/environment-setup)
102102
- Java JDK建议用 11(配置环境变量 **JAVE_HOME**,高于这个版本编译可能会报错)。
103103
- iOS平台需要配置[CocoaPods](https://reactnative.cn/docs/environment-setup)、Xcode、iOS Simulator。
104104
- Android Studio、Gradle、Android SDK、[Android Home 配置](https://reactnative.cn/docs/environment-setup)、Android NDK。
@@ -267,7 +267,7 @@ rm -rf node_modules
267267

268268
# for ios
269269
cd ios
270-
pod update / pod install
270+
pod update && pod install
271271
cd ..
272272
npx react-native run-ios
273273
# for android

android/app/src/debug/java/github/funnyzak/v2ex/ReactNativeFlipper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
55
* directory of this source tree.
66
*/
7-
package com.rndiffapp;
7+
package github.funnyzak.v2ex;
88

99
import android.content.Context;
1010
import com.facebook.flipper.android.AndroidFlipperClient;

android/app/src/release/java/github/funnyzak/v2ex/ReactNativeFlipper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
55
* directory of this source tree.
66
*/
7-
package com.rndiffapp;
7+
package github.funnyzak.v2ex;
88

99
import android.content.Context;
1010
import com.facebook.react.ReactInstanceManager;

0 commit comments

Comments
 (0)