Ionic build failed - android

I have been having this problem for a while now and i tried all the solutions on the internet but none of them helped.
I have this error whenever I run : Ionic run android:
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':processDebugResources'.
com.android.ide.common.process.ProcessException: org.gradle.process.internal.E
xecException: Process 'command 'C:\Users\hamiri\AppData\Local\Android\sdk\build-
tools\23.0.3\aapt.exe'' finished with non-zero exit value 1
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug
option to get more log output.
When running gradlew.bat --info build clean:
FAILURE: Build failed with an exception.
Where:
Script 'D:\HomeTest\platforms\android\CordovaLib\cordova.gradle' line: 117
What went wrong:
A problem occurred evaluating root project 'android'.
Unable to determine Android SDK directory.
I made sure to verify tools\23.0.3\aapt.exe is there.
Anybody can help me fix this?

Related

Flutter Build error=> What went wrong: Execution failed for task ':app:compileFlutterBuildStagingDebug'

I am trying to use my physical device for a flutter application, I am doing this through visual studio code.
flutter run --flavor=staging
OP: `FAILURE: Build failed with an exception.
Where:
Script 'C:\Users\Anand\flutter\packages\flutter_tools\gradle\flutter.gradle' line: 991
What went wrong:
Execution failed for task ':app:compileFlutterBuildStagingDebug'.
Process 'command 'C:\Users\Anand\flutter\bin\flutter.bat'' finished with non-zero exit value 1
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 2m 6s
Running Gradle task 'assembleStagingDebug'...
Running Gradle task 'assembleStagingDebug'... Done 134.1s
Exception: Gradle task assembleStagingDebug failed with exit code 1`
What should be done in this case?
Thanks

I can't run my flutter existing projects, what is happening?

I keep getting this error and I don't seem to find any help online. I am new to flutter, vscode and this whole programming world. Any help is very well appreciated. The thing is I can't run my previous projects but I actually can if I create new ones.
This is what it is printed in the debug console when I try to run my previous projects:
FAILURE: Build failed with an exception.
Where:
Script 'C:\src\flutter\packages\flutter_tools\gradle\flutter.gradle' line: 896
What went wrong:
Execution failed for task ':app:compileFlutterBuildDebug'.
Process 'command 'C:\src\flutter\bin\flutter.bat'' finished with non-zero exit value 1
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 19s
Exception: Gradle task assembleDebug failed with exit code 1
Exited (sigterm)

Ionic Cordova Android build error

I'm trying to build an Android version of a "blank" project with IONIC, now i'm stuck with this error. Has anyone experienced this before, and what would your answer be?
FAILED
BUILD FAILED
Total time: 2.179 secs
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':CordovaLib:processDebugResources'.
com.android.ide.common.process.ProcessException: Failed to execute aapt
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
Error: cmd: Command failed with exit code 1 Error output:
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':CordovaLib:processDebugResources'.
com.android.ide.common.process.ProcessException: Failed to execute aapt
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
[ERROR] An error occurred while running cordova build android (exit code 1).
The way i solved this problem is as below:
npm uninstall cordova ionic
npm install -g cordova#7.0.0 ionic#3.19.0
cordova platform rm android
cordova platform add android

Cordova build failed

I have installed Cordova but when I run $ cordova build in the terminal, it shows the following error. Please help me out.
BUILD FAILED
Total time: 8.645 secs
Error: /home/borsha/hello/platforms/android/gradlew: Command failed with exit code 1 Error output:
/home/borsha/hello/android-sdk-linux/build-tools/26.0.1/aapt: 1: /home/borsha/hello/android-sdk-linux/build-tools/26.0.1/aapt: Syntax error: ")" unexpected
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':CordovaLib:processDebugResources'.
com.android.ide.common.process.ProcessException: Failed to execute aapt
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
UPDATE
BUILD FAILED
Total time: 2.799 secs
Error: /home/borsha/hello/platforms/android/gradlew: Command failed with exit code 1 Error output:
/home/borsha/hello/android-sdk-linux/build-tools/25.0.0/aapt: 3: /home/borsha/hello/android-sdk-linux/build-tools/25.0.0/aapt: Syntax error: Unterminated quoted string
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':CordovaLib:processDebugResources'.
com.android.ide.common.process.ProcessException: Failed to execute aapt
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
Try downgrading API level to 23.0.3. You can do that using Android SDK Manager and Android Studio or you can follow the instructions here.
Versions newer than 23.0.3 still have bugs.

Build failed ionic project execution failed for task : processDebugResources'

I used to build and run my project with no problems. But, now I have this error eevry time I run ionic run android:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.E
xecException: Process 'command 'C:\Users\hamiri\AppData\Local\Android\sdk\build-
tools\23.0.2\aapt.exe'' finished with non-zero exit value 1
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug
option to get more log output.
My Android SDK is updated, and so is ionic.
Any suggestions?
Set environment variable like this in Environment variable
ANDROID_HOME= E:\sdk
JAVA_HOME= C:\Program Files\Java\ jdk
PATH = %PATH%;%ANDROID_HOME%\build-tools\23.0.1;%ANDROID_HOME%\platform-tools;%ANDROID_HOME%\tools;C:\Users\userXYZ\AppData\Roaming\npm

Categories

Resources