Compilation error with Android Studio

I am trying to compile an Android application with Android Studio on Linux. But I get the following errors:

Error: org.gradle.process.internal.ExecException: there was a problem launching 'command' / home / user / Android / Sdk / build-tools / 19.1.0 / aapt '': app: mergeDebugResources FAILED

Error: execution completed for task ': app: mergeDebugResources'.

Error: org.gradle.process.internal.ExecException: there was a problem starting the process 'command' / home / user / Android / Sdk / build-tools / 19.1.0 / aapt ''

How to solve this problem?

+5
source share
1 answer

I assume you are using a 64 bit machine. According to:

https://developer.android.com/studio/install.html

You need to install [libc6: i386 libncurses5: i386 libstdC ++ 6: i386 lib32z1 libbz2-1.0: i386]

+1
source

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


All Articles