android/settings.gradle
從項目/包到其各自的文件夾node_modules
中有映射。
在反應 - 本機地圖文檔它說,這應該是安卓/ settings.gradle:
include ':react-native-maps'
project(':react-native-maps').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-maps/android')
然而,觀察我node_modules/react-native-maps
文件夾中,我看到了路徑android文件夾,比不同上面,並有lib,然後android。所以我改成了這個(前「機器人」添加「LIB」):
include ':react-native-maps'
project(':react-native-maps').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-maps/lib/android')
然後清洗和重建在Android Studio中的項目,那麼它的工作。