I am learning how to use Ionic while running a test application, but I had this problem for two days. I was looking for possible solutions, but no one worked for me.
The problem occurs when I want to test the application on my Android phone. Using this command ionic cordova run android
gives me the following error
FAILURE: assembly failure with exception.
Something went wrong:
Execution failed for task ': CordovaLib: processDebugResources'. com.android.ide.common.process.ProcessException: Failed to execute aapt command
[ERROR] An error occurred while starting the android runova (exit code 1).
I'm not sure what happened. My application is very simple based on the Ionic template ionic start myApp tabs
, and I am using the Ionic native Geolocation plugin .
It works for me ionic info
and returns it
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 Cordova white paper for Android development , and my paths for Java and Android are fine.
Also with ionic cordova requirements
everything looks fine.
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.
source
share