Can't use srcCompat for ImageViews in android

前端 未结 12 538
借酒劲吻你
借酒劲吻你 2020-12-03 00:38

I\'m using the Design Support Library 23.2. I\'ve added these lines in my build.gradle as my Gradle Plugin is version 1.5

defaultConfig {
        applicat         


        
12条回答
  •  被撕碎了的回忆
    2020-12-03 01:21

    update your gradle plugin to 2.0+

    // Gradle Plugin 1.5  
    android {  
         defaultConfig {  
              generatedDensities = []  
         }  
    
    // This is handled for you by the 2.0+ Gradle Plugin  
         aaptOptions {  
              additionalParameters "--no-version-vectors"  
         }  
    

    as per google developer's blog guid lines

    http://android-developers.blogspot.in/2016/02/android-support-library-232.html

提交回复
热议问题