Skip to content

Commit 564a4ed

Browse files
committed
消除 gradle sync 后的 warning
1 parent 1c90a6a commit 564a4ed

File tree

2 files changed

+35
-51
lines changed

2 files changed

+35
-51
lines changed

app/build.gradle

Lines changed: 4 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -150,30 +150,6 @@ dependencies {
150150
// if you use the support libraries
151151
annotationProcessor "com.google.dagger:dagger-android-processor:$daggerVersion"
152152

153-
// google 兼容库
154-
implementation "com.android.support:support-v4:$supportVersion"
155-
implementation "com.android.support:design:$supportVersion"
156-
implementation "com.android.support:percent:$supportVersion"
157-
implementation "com.android.support:cardview-v7:$supportVersion"
158-
implementation "com.android.support:appcompat-v7:$supportVersion"
159-
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
160-
implementation 'com.android.support:multidex:1.0.3'
161-
implementation 'com.skyfishjy.ripplebackground:library:1.0.1'
162-
implementation 'com.loopj.android:android-async-http:1.4.9'
163-
implementation 'com.astuetz:pagerslidingtabstrip:1.0.1'
164-
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
165-
implementation 'se.emilsjolander:stickylistheaders:2.7.0'
166-
implementation 'de.hdodenhof:circleimageview:2.1.0'
167-
implementation 'com.github.rampo.updatechecker:library:2.1.4'
168-
implementation 'com.daimajia.swipelayout:library:1.1.7@aar'
169-
implementation 'com.melnykov:floatingactionbutton:1.3.0'
170-
implementation 'org.greenrobot:eventbus:3.0.0'
171-
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.1.11'
172-
implementation 'com.ms-square:etsyblur:0.1.0'
173-
implementation 'com.github.lzyzsd:circleprogress:1.1.0@aar'
174-
implementation 'it.neokree:MaterialNavigationDrawer:1.3.2'
175-
implementation 'com.prolificinteractive:parallaxpager:2.2.1'
176-
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.5.0'
177153
configurations {
178154
all*.exclude group: 'com.android.support', module: 'support-v13'
179155
}
@@ -187,14 +163,12 @@ dependencies {
187163
implementation 'org.apmem.tools:layouts:1.9@aar'
188164

189165
//flow_layout
190-
compile('cn.trinea.android.view.autoscrollviewpager:android-auto-scroll-view-pager:1.1.2') {
166+
implementation('cn.trinea.android.view.autoscrollviewpager:android-auto-scroll-view-pager:1.1.2') {
191167
exclude module: 'support-v4'
192168
}
193169

194170
// implementation 'com.twotoasters.jazzylistview:library:1.2.1'
195171

196-
// 删除旧版 umeng
197-
198172
// implementation project(':social_sdk_library_project')
199173
implementation project(':bottom-bar')
200174
implementation project(':luban')
@@ -213,16 +187,6 @@ dependencies {
213187
implementation 'com.orhanobut:logger:1.15'
214188
implementation 'com.github.bmelnychuk:atv:1.2.9'
215189

216-
// 网络请求
217-
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
218-
implementation 'com.squareup.okhttp3:logging-interceptor:3.9.0'
219-
implementation 'com.google.code.gson:gson:2.8.2'
220-
implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
221-
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
222-
implementation 'io.reactivex:rxjava:1.2.4'
223-
implementation 'io.reactivex:rxandroid:1.2.1'
224-
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
225-
226190
// 仿 apple 的 segmentied control
227191
implementation 'info.hoang8f:android-segmented:1.0.6'
228192

@@ -244,10 +208,10 @@ dependencies {
244208
// jar 依赖
245209
implementation files('libs/alipaySingle-20170510.jar')
246210
implementation files('libs/BaiduLBS_Android.jar')
247-
provided files('../common-coding/libs/android-viewbadger.jar')
211+
implementation files('../common-coding/libs/android-viewbadger.jar')
248212

249213
// 小红点
250-
provided files('../common-coding/libs/pinyin4j-2.5.0.jar')
214+
implementation files('../common-coding/libs/pinyin4j-2.5.0.jar')
251215
implementation project(':share-coding')
252216
implementation project(':git-code-coding')
253217

@@ -280,7 +244,7 @@ repositories {
280244
}
281245
}
282246
dependencies {
283-
compile(name: 'checknetwork', ext: 'aar')
247+
implementation(name: 'checknetwork', ext: 'aar')
284248
}
285249

286250
// 高斯模糊 start --------------------------------------------------------------------------

common-third-library/build.gradle

Lines changed: 31 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -55,29 +55,49 @@ dependencies {
5555

5656
// google 兼容库
5757
def supportVersion = '27.1.1'
58+
// google 兼容库
5859
api "com.android.support:support-v4:$supportVersion"
59-
// api "com.android.support:support-v13:$supportVersion"
6060
api "com.android.support:design:$supportVersion"
6161
api "com.android.support:percent:$supportVersion"
6262
api "com.android.support:cardview-v7:$supportVersion"
6363
api "com.android.support:appcompat-v7:$supportVersion"
64-
// api "com.android.support:support-annotations:$supportVersion"
65-
api 'com.android.support.constraint:constraint-layout:1.0.2'
64+
api 'com.android.support.constraint:constraint-layout:1.1.2'
65+
api 'com.android.support:multidex:1.0.3'
66+
api 'com.skyfishjy.ripplebackground:library:1.0.1'
67+
api 'com.loopj.android:android-async-http:1.4.9'
68+
api 'com.astuetz:pagerslidingtabstrip:1.0.1'
69+
api 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
70+
api 'se.emilsjolander:stickylistheaders:2.7.0'
71+
api 'de.hdodenhof:circleimageview:2.1.0'
72+
api 'com.github.rampo.updatechecker:library:2.1.4'
73+
api 'com.daimajia.swipelayout:library:1.1.7@aar'
74+
api 'com.melnykov:floatingactionbutton:1.3.0'
75+
api 'org.greenrobot:eventbus:3.0.0'
76+
api 'pl.droidsonroids.gif:android-gif-drawable:1.1.11'
77+
api 'com.ms-square:etsyblur:0.1.0'
78+
api 'com.github.lzyzsd:circleprogress:1.1.0@aar'
79+
api 'it.neokree:MaterialNavigationDrawer:1.3.2'
80+
api 'com.prolificinteractive:parallaxpager:2.2.1'
81+
api 'com.davemorrissey.labs:subsampling-scale-image-view:3.5.0'
82+
// configurations {
83+
// all*.exclude group: 'com.android.support', module: 'support-v13'
84+
// }
85+
6686
// umeng 统计
6787
api 'com.umeng.analytics:analytics:latest.integration'
6888

6989
// kotlin
7090
api "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
7191

7292
// 网络请求
73-
api 'com.squareup.retrofit2:retrofit:2.1.0'
74-
api 'com.squareup.okhttp3:logging-interceptor:3.5.0'
75-
api 'com.google.code.gson:gson:2.8.0'
76-
api 'com.squareup.retrofit2:adapter-rxjava:2.0.2'
77-
api 'com.squareup.okhttp3:okhttp:3.5.0'
78-
api 'io.reactivex:rxjava:1.0.14'
79-
api 'io.reactivex:rxandroid:1.0.1'
80-
api 'com.squareup.retrofit2:converter-gson:2.2.0'
93+
api 'com.squareup.retrofit2:retrofit:2.3.0'
94+
api 'com.squareup.okhttp3:logging-interceptor:3.9.0'
95+
api 'com.google.code.gson:gson:2.8.2'
96+
api 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
97+
api 'com.squareup.okhttp3:okhttp:3.9.1'
98+
api 'io.reactivex:rxjava:1.2.4'
99+
api 'io.reactivex:rxandroid:1.2.1'
100+
api 'com.squareup.retrofit2:converter-gson:2.3.0'
81101

82102
// 常用工具类
83103
api 'com.blankj:utilcode:1.9.0'

0 commit comments

Comments
 (0)