代码拉取完成,页面将自动刷新
ext {
// Use progurad or not
MINIFY_ENABLED = true
MINIFY_DISABLED = false
MINIFY = MINIFY_DISABLED;//是否需要混淆
// Version of "com.android.support:appcompat-v7", refer it as folow:
// compile "com.android.support:appcompat-v7:${APPCOMPAT_VERSION}"
APPCOMPAT_VERSION = '25.1.0'
// Version of "junit", refer it as folow:
// compile "junit:junit:${JUNIT_VERSION}"
JUNIT_VERSION = '4.12'
android = [
compileSdkVersion : 30,
buildToolsVersion : "30.0.1",
applicationId : "com.rchat.pocmini",
minSdkVersion : 15,
targetSdkVersion : 26,
versionCode : 20,
//大版本.功能版本.bug版本.0(版本分支:[0:各个分支的dev版本]0主干1是GY版本)+ 编包日期.
//编正式版本时,PocApplication.java中的isRelease字段要改成true,切记
versionName : "1.3.8.0210305",
testInstrumentationRunner: "android.support.test.runner.AndroidJUnitRunner"
]
'junit:junit:4.12'
dependencies = [
//android.support
"appcompat-v7": "com.android.support:appcompat-v7:${APPCOMPAT_VERSION}",
"junit" : "junit:junit:${JUNIT_VERSION}",
]
}
//通常我们为了更好的管理Android版本信息、常用依赖等,我们将这些基础配置写到一个单独的gradle文件中作为全局配置。
// 配置ext,然后在我们的工程根目录下的build.gradle文件中做如下配置。这样就可以在全局gradle中访问ext中的信息了。
//apply from: 'config.gradle'
//配置请参考:http://blog.csdn.net/cai_iac/article/details/51850291
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。