Reputation:
I always get these errors while building my Cordova project and i tried updating everything in SDK manager and acceppting all licenses but i still get these error's. how can I fix this?
ANDROID_SDK_ROOT=C:\Users\Amir\AppData\Local\Android\Sdk (recommended setting)
ANDROID_HOME=C:\Users\Amir\AppData\Local\Android\Sdk (DEPRECATED)
Using Android SDK: C:\Users\Amir\AppData\Local\Android\Sdk
Subproject Path: CordovaLib
Subproject Path: app
Starting a Gradle Daemon, 1 incompatible and 1 stopped Daemons could not be reused, use --status for details
Observed package id 'emulator' in inconsistent location 'C:\Users\Amir\AppData\Local\Android\Sdk\emulator-2' (Expected 'C:\Users\Amir\AppData\Local\Android\Sdk\emulator')
Build-tool 31.0.0 is missing DX at C:\Users\Amir\AppData\Local\Android\Sdk\build-tools\31.0.0\dx.bat
Observed package id 'emulator' in inconsistent location 'C:\Users\Amir\AppData\Local\Android\Sdk\emulator-2' (Expected 'C:\Users\Amir\AppData\Local\Android\Sdk\emulator')
File C:\Users\Amir\.android\repositories.cfg could not be loaded.
Observed package id 'emulator' in inconsistent location 'C:\Users\Amir\AppData\Local\Android\Sdk\emulator-2' (Expected 'C:\Users\Amir\AppData\Local\Android\Sdk\emulator')
Build-tool 31.0.0 is missing DX at C:\Users\Amir\AppData\Local\Android\Sdk\build-tools\31.0.0\dx.bat
FAILURE: Build failed with an exception.
* What went wrong:
Could not determine the dependencies of task ':app:compileDebugJavaWithJavac'.
> Installed Build Tools revision 31.0.0 is corrupted. Remove and install again using the SDK Manager.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 16s
Command failed with exit code 1: L:\Amir-Softwares\Web dev\Vue android\amir-weather\src-cordova\platforms\android\gradlew cdvBuildDebug -b L:\Amir-Softwares\Web dev\Vue android\amir-weather\src-cordova\platforms\android\build.gradle
App • Command "cordova" failed with exit code: 1
App • Updated Cordova config.xml
App • ⚠️ FAIL Cordova CLI has failed```
Upvotes: 8
Views: 33847
Reputation:
First, delete every related folders and files. Then, reinstall everything
in the root folder disk:
inside the Users\Usuario\appData\Roaming folder
inside the Users\Usuario\.android folder
inside the Users\Usuario\appData\Android folder , delete all its content
inside the program files, delete the folder before uninstalling android studio (Using Control Panel or Config->Apps)
Delete the "path" environment variable
Finally, reinstall android studio.
This error made me lose 4 hours, and the best thing I did was completely delete everything. Cause of this error is because, you have two build-tools registered.
You can use. $> ns setup. to set up a new environment
ns setup
Upvotes: 2
Reputation: 307
as the outpus sais, the Build Tools revision 31.0.0 is apparently corrupted. All you need to do is:
It should look something like this:
Upvotes: 15