react-native-image-filter-kit icon indicating copy to clipboard operation
react-native-image-filter-kit copied to clipboard

> Task :react-native-image-filter-kit:packageDebugRenderscript FAILED

Open SatalBill opened this issue 4 years ago • 3 comments

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?

SatalBill avatar Jun 08 '21 22:06 SatalBill

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 avatar Jul 24 '21 10:07 pradeepk7053

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 ?

muhammadashfaq avatar Dec 17 '21 07:12 muhammadashfaq

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. 

`

kamal-star250 avatar Dec 21 '23 09:12 kamal-star250