-
Notifications
You must be signed in to change notification settings - Fork 80
Home
coder_zzq edited this page Apr 9, 2019
·
22 revisions
- 在Project的gradle文件中
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
- 在Module的gradle文件中
implementation ('com.github.the-pig-of-jungle.smart-show:all:2.6.7'){
exclude group: 'com.android.support'
}
//添加与你项目匹配的design依赖库的相应版本
implementation 'com.android.support:design:x.y.z'
//smart toast
implementation 'com.github.the-pig-of-jungle.smart-show:toast:2.6.7'
// smart dialog
implementation 'com.github.the-pig-of-jungle.smart-show:dialog:2.6.7'
// smart topbar
implementation('com.github.the-pig-of-jungle.smart-show:topbar:2.6.7') {
exclude group: 'com.android.support'
}
//添加与你项目匹配的design依赖库的相应版本
implementation 'com.android.support:design:x.y.z'
// smart snackbar
implementation('com.github.the-pig-of-jungle.smart-show:snackbar:2.6.7') {
exclude group: 'com.android.support'
}
//添加与你项目匹配的design依赖库的相应版本
implementation 'com.android.support:design:x.y.z'
1