You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, my project uses API level 31 with RN 0.69.1
ext {
buildToolsVersion ="31.0.0"
minSdkVersion =21
compileSdkVersion =31
targetSdkVersion =31if (System.properties['os.arch'] =="aarch64") {
// For M1 Users we need to use the NDK 24 which added support for aarch64
ndkVersion ="24.0.8215888"
} else {
// Otherwise we default to the side-by-side NDK version from AGP.
ndkVersion ="21.4.7075529"
}
}
When trying to build I get the following error:
*Where:
Build file '$root/node_modules/react-native-quick-sqlite/android/build.gradle'line: 183*What went wrong:
A problem occurred evaluating project ':react-native-quick-sqlite'.
>Expected directory '$root/node_modules/react-native/android' to contain exactly one file, however, it contains more than one file.
The 183 line in the '$root/node_modules/react-native-quick-sqlite/android/build.gradle' is:
I think this happens because in the '$root/node_modules/react-native/android/com/facebook/react/' directory there are the 'react-native' and 'hermes-engine' directories which contain a .aar file.
Could you help me solve this problem? Thanks in advance
The text was updated successfully, but these errors were encountered:
Hello, my project uses API level 31 with RN 0.69.1
When trying to build I get the following error:
The 183 line in the '$root/node_modules/react-native-quick-sqlite/android/build.gradle' is:
I think this happens because in the '$root/node_modules/react-native/android/com/facebook/react/' directory there are the 'react-native' and 'hermes-engine' directories which contain a
.aar
file.Could you help me solve this problem? Thanks in advance
The text was updated successfully, but these errors were encountered: