I have upgraded Android Studio from 2.2 to 2.3 and when I create a new Android project with a navigation activity I got two errors:
Error:java.util.concurrent.ExecutionException:
java.lang.RuntimeException: AAPT process not ready to receive commands
Error:Execution failed for task ':app:mergeDebugResources'.
> Error: java.util.concurrent.ExecutionException:
java.lang.RuntimeException: AAPT process not ready to receive commands
When I had the older version I solved the problem changing the value of buildToolsVersion in build.gradle file to 23.0.3 instead of 25.0.0.
In the new version I make the same change and I got the following error:
Gradle Sync Issues
Error:Error:The SDK Build Tools revision (23.0.3) is too low for project
':app'. Minimum required is 25.0.0
Update Build Tools version and sync project
But this is not the one change I make. I also must change the version of android support libraries on the dependencies:
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
These errors appear on Debian Linux. I have a colleague that works on Windows and he can create new projects using Android Studio 2.3 version.
How can I fix those errors?
Thanks.