buildTypes cannot be applied to groovy.lang.Closure

前端 未结 19 2166
故里飘歌
故里飘歌 2020-11-27 11:31

I\'m getting this warning in my project gradle file:

Warning:(16, 5) \'buildTypes\' cannot be applied to \'(groovy.lang.Closure< com.android.build.

19条回答
  •  抹茶落季
    2020-11-27 12:04

    this worked for me:

    buildTypes.debug {
        ext.enableCrashlytics = false
    }
    
    buildTypes.release {
        debuggable false
        zipAlignEnabled true
        minifyEnabled false
        signingConfig signingConfigs.release
    }
    

提交回复
热议问题