加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
config.gradle 3.62 KB
一键复制 编辑 原始数据 按行查看 历史
scofieldyoo 提交于 2018-07-30 12:58 . add a Project
ext {
// rootProject.ext.isDebug.toBoolean()
plugins = [
application: 'com.android.application',
library : 'com.android.library',
maven : 'com.github.dcendents.android-maven',
bintray : 'com.jfrog.bintray'
]
//com.dsdata.test
isDebug = true
android = [
applicationId : "com.zuoli.wallet",
// 签名store
storeFile : "../szetwlkj",
storePassword : "123456",
keyAlias : "szetwlkj",
keyPassword : "123456",
compileSdkVersion: 23,
buildToolsVersion: "23.0.2",
minSdkVersion : 16,
targetSdkVersion : 22,
versionCode : 2,
versionName : '1.0.1',
supportSdk : '23.3.0',
umengKey : "59ddbbfcf43e4866db00001a",
mapGDKey : "5d2c823411c10d89f2eef1c37bb1d48f",
partnerCode : "changna",
]
dependencies = [
"support-v4" : "com.android.support:support-v4:${android["supportSdk"]}",
"support-v7" : "com.android.support:support-v7:${android["supportSdk"]}",
"palette-v7" : "com.android.support:palette-v7:${android["supportSdk"]}",
"appcompat-v7" : "com.android.support:appcompat-v7:${android["supportSdk"]}",
"recyclerview-v7" : "com.android.support:recyclerview-v7:${android["supportSdk"]}",
"design" : "com.android.support:design:${android["supportSdk"]}",
"annotations" : "com.android.support:support-annotations:${android["supportSdk"]}",
// JSON 解析框架
"gson" : "com.google.code.gson:gson:2.8.0",
// 网络请求框架
"retrofit" : "com.squareup.retrofit2:retrofit:2.1.0",
// GreenDao
"greendao" : "org.greenrobot:greendao:3.1.0",
// 图片加载
"glide" : "com.github.bumptech.glide:glide:3.7.0",
// OKHttp方式加载网络图片
"glide-okhttp3-integration" : "com.github.bumptech.glide:okhttp3-integration:1.4.0@aar",
// 强大的 RecyclerView 适配器 https://github.com/CymChad/BaseRecyclerViewAdapterHelper
"baseRecyclerViewAdapterHelper": "com.github.CymChad:BaseRecyclerViewAdapterHelper:2.4.4",
// 刷新控件 https://github.com/Aspsine/SwipeToLoadLayout
"swipeToLoadLayout" : "com.github.Aspsine:SwipeToLoadLayout:1.0.3",
// 粘性头部 https://github.com/timehop/sticky-headers-recyclerview
"stickyHeadersRecyclerView" : "com.timehop.stickyheadersrecyclerview:library:0.4.3@aar",
// DatePick 效果的弹出选择框
"pickerView" : "com.bigkoo:pickerview:2.0.8",
//仿支付宝密码
"GridPasswordView" : "com.jungly:gridPasswordView:0.3",
// URL路由
"activityRouter" : "com.github.mzule.activityrouter:activityrouter:1.2.1",
"activityRouter-compiler" : "com.github.mzule.activityrouter:compiler:1.1.7",
// android权限管理 https://github.com/yanzhenjie/AndPermission
"permission" : "com.yanzhenjie:permission:1.0.5",
"alertdialog" : "com.yanzhenjie.alertdialog:alertdialog:1.0.0",
]
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化