当我初始化react-native时,要链接手势,我只是显示一个问题, 我不知道为什么,而且根据https://reactnavigation.org/docs/en/getting-started.html
我也已经修复了MainActivity.java。npm install-保存反应导航 npm install --save react-native-gesture-handler
当我发短信react-native链接react-native-gesture-handler时 只是显示问题 “ rnpm-install ERR!ERRPACKAGEJSON未找到软件包。您确定这是一个React Native项目吗? 在D:\ egame_android \ egame \ android \ app \ src \ debug \ AndroidManifest.xml中找不到包名称“在此处输入图像描述 enter image description here
答案 0 :(得分:0)
请转到“ D:\ egame_android \ egame \ android \ app \ src \ debug \ AndroidManifest.xml” 并添加包名称属性。例如:package =“ com.YOUR_PACKAGE_NAME”
修复问题后,我的AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.YOUR_PACKAGE_NAME">
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" />
</manifest>