Search code examples
androidandroid-gradle-plugin

Why "This app has been built with an incorrect configuration" error occured in some phones?


I Have build my app in android 6 without any error, but when I build my app in android 4.4.2 I get this error

This app has been built with an incorrect configuration.
 Please configure your build for VectorDrawableCompat.

and this is my gradle:

android {
    compileSdkVersion 24
    buildToolsVersion "23.0.0"
    defaultConfig {
        applicationId "com.faranegar.channel"
        minSdkVersion 11
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

note: when I set compileSdkVersion 23, every thing is fine and there isn't any error.


Solution

  • This issue was alread reported here Issue 214182: appcompat-v7 24.0.0 is incompatible with rasterized vectors.

    One of the developer mention:

    What version of the Gradle plugin are you using?

    As of v2.0 of the Gradle plugin, library resources are never rasterized so this should never happen.

    The workaround for this is to update your Gradle by following this official link. Android Plugin for Gradle Release Notes.

    buildscript {
      ...
      dependencies {
        classpath 'com.android.tools.build:gradle:2.1.0'
      }
    }