TwoDent
TwoDent

Reputation: 385

How to setup correctly Android Studio for test apps in a BLU cell phone?

I´m trying to test my apps from android studio on my cell phone (BLU Energy X Plus):

enter image description here

As you can see, I already enable the debug mode in my phone. When I try to run my application, from android studio I get this error:

enter image description here

enter image description here

In addition to enabling debugging mode on my cell phone, I already installed the generic google USB driver:

enter image description here

My Windows detects the model of the phone correctly too... I can´t understand whats wrong here?

enter image description here

Upvotes: 0

Views: 221

Answers (2)

TwoDent
TwoDent

Reputation: 385

FINALLY I FOUND THE SOLUTION

I just had to delete the entire build/ folder of the project, and go to Build --> Re-build project in Android Studio!

Problem fixed. :)

Upvotes: 1

TooManyEduardos
TooManyEduardos

Reputation: 4404

The error you're getting "Application Installation Failed" is because you already have the app installed on your phone, but it was signed with a different certificate. So that message says "you already have an app with this package id, but the signature doesn't match"

Just remove the app you already have on your phone, and try from Android studio again.

Upvotes: 0

Related Questions