I can´t deploy my project in my cell phone anymore. I don´t know if it is because I have updated Gradle or update my cell phone system or both.
The error message is
This problem occurs due to android device issue. Change your testing device to run your app. It worked in my case.
I also faced the problem and after searching for long.
I found out, In my case, it was because of low memory space on my device. It may be the case for you also.
Hope this helps.
I faced the same problem while trying to launch the app on my phone through android studio. I solved this by changing my mobile setting. settings > storage > preferred install location > Internal device storage.
This problem appeared to me when I upgraded Android Studio and then Gradle.
To solve the problem I returned the version of Gradle:
// Top-level build file where you can add configuration options common to all sub-projects / modules.
Buildscript {
Repositories {
Jcenter ()
}
Dependencies {
classpath 'com.android.tools.build:gradle:2.x.x'
...
}
}