Failed to create reactive project 2 for phone

I have a completely edited project by default and I try to run it on my phone, but kep gets the following error when I start

responsive-native run-android

teams.

Output:

java.io.IOException: cannot start the program "/home/webshinobis/Android/sdk/build-tools/23.0.1/aapt": error = 2, there is no such file or directory

But I checked the build tools and this file is right there. I reinstalled the build tools for 23.0.1, but no change. any ideas to help? thanks.

+5
source share
2 answers

Essential libraries for 64-bit machines:

If you are using the 64-bit version of Ubuntu, you need to install the 32-bit libraries:

$sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386 

If you are using 64-bit Fedora:

 $sudo yum install zlib.i686 ncurses-libs.i686 bzip2-libs.i686 
+14
source

Oh, thanks. I just followed this

 sudo dpkg --add-architecture i386 sudo apt-get update 

but I received an error message that the package could not find. Then I found the answer in here . To summarize it, you must add an i386 architecture like this

 sudo dpkg --add-architecture i386 sudo apt-get update 

this work is very good for me.

0
source

Source: https://habr.com/ru/post/1261378/


All Articles