> Task :react-native-image-filter-kit:packageDebugRenderscript FAILED
I ran "react-naitve run-android" but I am getting this error. I tried to install NDK 20.0.5594570 and tried to downgrade this package's version and tried to upgrade distributionUrl in "android/gradle/wrapper/gradle-wrapper.properties". But all not working. How to solve this?
I solved after installing this package
for 32-bit binaries : sudo apt-get install libncurses5:i386
for 64-bit binaries : sudo apt-get install libncurses5
Also install the collection of libraries by using this command,
sudo apt-get install ia32-libs
I solved after installing this package
for 32-bit binaries : sudo apt-get install libncurses5:i386
for 64-bit binaries : sudo apt-get install libncurses5
Also install the collection of libraries by using this command,
sudo apt-get install ia32-libs
@pradeepk7053 where to add them ?
Hello,
I was facing the same issue on Mac M1 chip. On my windows machine project is starting with android studio and my terminal or build is generating easily.
After spend more time i found a solution and i tried them.
Here is the solution it works for me.
` 1. Open project in android studio. 2. Invalidate the caches by android studio 3. After that run these commands inside your VS code.
4. Go inside project directory/android folder
5. then run this command
./gradlew clean
6. After successful this command run next command
./gradlew assembleRelease
7. Now when it will successful make build with android studio.
`