Modify: 添加buildSrc模块,对项目参数及依赖版本统一配置

This commit is contained in:
Quyunshuo
2020-08-26 18:57:04 +08:00
parent 45c547f2e5
commit 20ba6c3ec9
5 changed files with 281 additions and 7 deletions

View File

@ -0,0 +1,14 @@
package com.quyunshuo.androidbaseframemvvm.build
/**
* 项目相关参数配置
*/
object BuildConfig {
const val compileSdkVersion = 30
const val buildToolsVersion = "30.0.1"
const val applicationId = "com.quyunshuo.androidbaseframemvvm"
const val minSdkVersion = 21
const val targetSdkVersion = 30
const val versionCode = 1
const val versionName = "1.0"
}