2 Star 0 Fork 0

rchat/poc-public

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.gradle 1.72 KB
一键复制 编辑 原始数据 按行查看 历史
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
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Android
1
https://gitee.com/rchat/poc-public.git
git@gitee.com:rchat/poc-public.git
rchat
poc-public
poc-public
master

搜索帮助