I want to install an APK via USB in android studio 3.5 but I get the following error: Session 'app' did not installed.
I also, try to install the APK via USB in my friend phone's, when I do this there are no issues or errors.
Why when I try to install APK via USB on my phone do I get an error?
My Build Gradle Code
apply plugin: 'com.android.library'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
minSdkVersion 21
targetSdkVersion 28
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}