I am facing an issue in installing(build or signed) apk in the device showing "App not installed". It's working fine previously, after updating my build tools to "3.1.0" and compile SDK to "android-P" facing this issue,
If I downgrade to "26", showing "drawable-28-alpha" error. Can you please help me with this, tried almost everything.
**build.gradle**
compileSdkVersion 'android-P'
buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.***.******"
minSdkVersion 19
targetSdkVersion 27
versionCode 7
versionName "1.4.2"
multiDexEnabled true
}
classpath 'com.android.tools.build:gradle:3.1.0'
**gradle-wrapper:**
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
Thanks in advance!