**2.**在根目录下的build.gradle文件中引入我们创建的配置文件
**3.**config.gradle中文件内容可以自己定义,如下示例:
ext {
// 用于编译的SDK版本
COMPILE_SDK_VERSION = 23
// 用于Gradle编译项目的工具版本
BUILD_TOOLS_VERSION = “24.0.2”
// 最低支持Android版本
MIN_SDK_VERSION = 14
// 目标版本
TARGET_SDK_VERSION = 23
// 设置是否使用混淆
MINIFY_ENABLED = true
MINIFY_DISABLED = false
// 应用程序包名
APPLICATION_ID = ‘com.mainiway.eworkpal’
// Version of “com.android.support:appcompat-v7”, refer it as folow:
// compile “com.android.support:appcompat-v7:${APPCOMPAT_VERSION}”
APPCOMPAT_VERSION = ‘23.2.1’
}
**4.**在app目录下的build.gradle中使用
dependencies {