chaimPaneth / react-native-zoom-bridge

23 stars 15 forks source link

Unable to resolve additional project configuration. #27

Open user1701 opened 4 years ago

user1701 commented 4 years ago

settings.gradle is updating when I run link command with the following code:

include ':zoomsdk'
project(':zoomsdk').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-zoom-bridge/android/zoomsdk')
include ':zoomcommonlib'
project(':zoomcommonlib').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-zoom-bridge/android/zoomcommonlib')
include ':react-native-zoom-bridge'
project(':react-native-zoom-bridge').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-zoom-bridge/android')

and I have warning while gradle syncing with files

Warning:<i><b>root project 'android': Unable to resolve additional project configuration.</b>
Details: org.apache.tools.ant.BuildException: ...path/node_modules/react-native-zoom-bridge/android/zoomcommonlib does not exist</i>

and I didn't see these zoomsdk and zoomcommonlib in manual installation. Should I get rid these lines?

amdrade commented 4 years ago

What version of RN?

user1701 commented 4 years ago

expo SDK 35.0.0, RN 0.59.8

amdrade commented 4 years ago

Android try put files on node_modules/react-native-zoom-bridge/android/libs

user1701 commented 4 years ago

@amdrade my question is about removing these lines from the android project, according to the android manual installation instructions these lines have to be removed. My project is working well, without them...