1

我是 React-Native 的新手。

我正在尝试在 Visual Studio Emulator for Android 中运行我的 React-Native android 项目。

我的构建通过运行成功react-native run-android,但我无法在模拟器中启动应用程序。

它给了我以下错误:

错误类型 3。活动类不存在。

我尝试了 gradlew clean 和 gradlew cleanBuildCache。但同样的错误存在。

我检查了以下文件中的包名,所有 4 个文件中的包名都相同。MainActivity.java、AndroidManifest.xml、build.gradle、MainApplication.java

难道我做错了什么?或者如何在 Visual Studio Emulator 中运行我的应用程序?

4

1 回答 1

0

你在 AndroidStudio 中打开了你的项目吗?在其中打开后,检查 App->src->main->assets 中的 assets 文件夹,如果不存在,请制作它。

运行以下命令

 $ react-native bundle –platform android –dev false –entry-file index.js –bundle-output android/app/src/main/assets/index.android.bundle –assets-dest android/app/src/main/res

然后再次尝试构建并运行它。

于 2018-04-16T11:09:48.690 回答