AndroidStudio配置常量字段

采用如下方式可以控制日志的输出情况.

buildTypes {
        //开发中,可以打印日志
        debug {
            buildConfigField("boolean", "CONFIG_ALLOW_LOG", "true")
        }
        //上线打包,不允许打印日志
        release {
            buildConfigField("boolean", "CONFIG_ALLOW_LOG", "false")
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

你可能感兴趣的:(AndroidStudio配置常量字段)