Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Execution failed for task ':CordovaLib:processDebugResources'. > com.android.ide.common.process.ProcessException: Failed to execute aapt

I am learning how to use Ionic by doing a test application but I have had this problem for two days. I have looked for possible solutions but none has worked for me.

The problem arises when I want to test my application on my android phone. When using this command ionic cordova run android and gives me the following error

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

[ERROR] An error occurred while running cordova run android (exit code 1).

I'm not sure what's wrong. My application it's very simple it's based on Ionic's template ionic start myApp tabs and I'm using Ionic native plugin Geolocation.

I've running ionic info and returns this

cli packages:
    @ionic/cli-utils  : 1.19.0
    ionic (Ionic CLI) : 3.19.0
global packages:
    cordova (Cordova CLI) : 7.1.0
local packages:
    @ionic/app-scripts : 3.1.4
    Cordova Platforms  : android 6.3.0
    Ionic Framework    : ionic-angular 3.9.2

I also checked the official Cordova's doc for Android development and my paths for Java and Android are OK.

Also with ionic cordova requirements everything looks to be OK.

Java JDK: installed 1.8.0
Android SDK: installed true
Android target: installed android-26,android-25,android-23
Gradle: installed C:\Program Files\Android\Android Studio\gradle\gradle-4.1\bin\gradle

Thanks for any help.

like image 308
Azac Avatar asked Oct 29 '22 22:10

Azac


2 Answers

The way i solved this problem is as below:

1) npm uninstall cordova ionic

2) npm install -g [email protected] [email protected]

3) cordova platform rm android

4) cordova platform add android

like image 134
Gaurav Kumar Avatar answered Nov 09 '22 08:11

Gaurav Kumar


This is due to compat plugin. Remove that plugin if you have older version (less than 1.2.0) and set [email protected]

cordova plugin rm cordova-plugin-compat --force

cordova plugin add [email protected]

cordova platform rm android

ionic cordova platform add [email protected]

Working at my case. Thanks :)

like image 39
Pranay Kumar Avatar answered Nov 09 '22 06:11

Pranay Kumar