加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.gradle 1.35 KB
一键复制 编辑 原始数据 按行查看 历史
Blankj 提交于 2016-11-24 11:14 . see 11/24 log
ext {
signingConfig = [
storePassword : "xxx",
keyAlias : "xxx",
keyPassword : "xxx"
]
android = [
compileSdkVersion : 24,
buildToolsVersion : "24.0.3",
minSdkVersion : 11,
targetSdkVersion : 24,
versionCode : 12,
versionName : "1.3.3"
]
depsVersion = [
support : "24.0.0"
]
deps = [
// ------------- Android -------------
supportV4 : "com.android.support:support-v4:${depsVersion.support}",
appcompatV7 : "com.android.support:appcompat-v7:${depsVersion.support}",
design : "com.android.support:design:${depsVersion.support}",
// ------------- RxAndroid -------------
rxAndroid : 'io.reactivex:rxandroid:1.2.1',
rxJava : 'io.reactivex:rxjava:1.1.6',
// ------------- LeakCanary -------------
leakcanaryAndroid : 'com.squareup.leakcanary:leakcanary-android:1.5',
leakcanaryAndroidNoOp : 'com.squareup.leakcanary:leakcanary-android-no-op:1.5',
// ------------- Test dependencies -------------
junit : 'junit:junit:4.12',
truth : 'com.google.truth:truth:0.29',
robolectric : 'org.robolectric:robolectric:3.1.2'
]
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化