Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
YDL-Component-Medical
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
杨凯
YDL-Component-Medical
Commits
85cfa249
Commit
85cfa249
authored
Nov 19, 2019
by
konghaorui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除重复/无用第三方库
parent
c4464515
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
40 deletions
+24
-40
config.gradle
config.gradle
+5
-6
build.gradle
m-course/build.gradle
+1
-9
build.gradle
ydl-net/build.gradle
+9
-8
build.gradle
ydl-pay/build.gradle
+0
-16
build.gradle
ydl-platform/build.gradle
+9
-1
No files found.
config.gradle
View file @
85cfa249
...
...
@@ -28,10 +28,10 @@ ext {
version
=
[
androidSupportSdkVersion:
"28.0.0"
,
retrofitSdkVersion
:
"2.
3
.0"
,
retrofitSdkVersion
:
"2.
6
.0"
,
dagger2SdkVersion
:
"2.23.2"
,
glideSdkVersion
:
"4.3.1"
,
butterknifeSdkVersion
:
"
9.0.0
"
,
butterknifeSdkVersion
:
"
8.8.1
"
,
rxlifecycleSdkVersion
:
"1.0"
,
rxlifecycle2SdkVersion
:
"2.2.2"
,
espressoSdkVersion
:
"3.0.1"
,
...
...
@@ -60,7 +60,7 @@ ext {
"m-user-api"
:
"0.0.5"
,
//-------------- 功能组件 --------------
//第一步
"ydl-platform"
:
"0.0.2
1
"
,
"ydl-platform"
:
"0.0.2
2
"
,
//第二步 若干
"ydl-webview"
:
"0.0.21"
,
"ydl-media"
:
"0.0.10"
,
...
...
@@ -125,7 +125,7 @@ ext {
"retrofit-converter-scalars"
:
"com.squareup.retrofit2:converter-scalars:${version["
retrofitSdkVersion
"]}"
,
"okhttp3"
:
"com.squareup.okhttp3:okhttp:3.12.3"
,
"okhttp4"
:
"com.squareup.okhttp3:okhttp:4.0.0"
,
"okhttp3-logging"
:
"com.squareup.okhttp3:logging-interceptor:3.
8.0
"
,
"okhttp3-logging"
:
"com.squareup.okhttp3:logging-interceptor:3.
12.2
"
,
"okhttp-urlconnection"
:
"com.squareup.okhttp:okhttp-urlconnection:2.0.0"
,
"glide"
:
"com.github.bumptech.glide:glide:${version["
glideSdkVersion
"]}"
,
"glide-compiler"
:
"com.github.bumptech.glide:compiler:${version["
glideSdkVersion
"]}"
,
...
...
@@ -158,7 +158,7 @@ ext {
"rxerrorhandler"
:
"me.jessyan:rxerrorhandler:1.0.1"
,
//rx2
"rxandroid2"
:
"io.reactivex.rxjava2:rxandroid:2.
0
.1"
,
"rxandroid2"
:
"io.reactivex.rxjava2:rxandroid:2.
1
.1"
,
"rxjava2"
:
"io.reactivex.rxjava2:rxjava:2.2.10"
,
"rxlifecycle2"
:
"com.trello.rxlifecycle2:rxlifecycle:${version["
rxlifecycle2SdkVersion
"]}"
,
"rxlifecycle2-android"
:
"com.trello.rxlifecycle2:rxlifecycle-android:${version["
rxlifecycle2SdkVersion
"]}"
,
...
...
@@ -176,7 +176,6 @@ ext {
"androideventbus"
:
"org.simple:androideventbus:1.0.5.1"
,
"otto"
:
"com.squareup:otto:1.3.8"
,
"gson"
:
"com.google.code.gson:gson:2.8.5"
,
"multidex"
:
"com.android.support:multidex:1.0.3"
,
"javax.annotation"
:
"javax.annotation:jsr250-api:1.0"
,
"arouter"
:
"com.alibaba:arouter-api:1.4.1"
,
"progressmanager"
:
"me.jessyan:progressmanager:1.5.0"
,
...
...
m-course/build.gradle
View file @
85cfa249
...
...
@@ -62,16 +62,8 @@ dependencies {
androidTestImplementation
'com.android.support.test:runner:1.0.2'
androidTestImplementation
'com.android.support.test.espresso:espresso-core:3.0.2'
kapt
'com.alibaba:arouter-compiler:1.2.2'
implementation
'com.jakewharton:butterknife:8.8.1'
// api 'com.dou361.ijkplayer-armv5:jjdxm-ijkplayer-armv5:1.0.0'
// api 'com.dou361.ijkplayer-arm64:jjdxm-ijkplayer-arm64:1.0.0'
// api 'com.dou361.ijkplayer-x86:jjdxm-ijkplayer-x86:1.0.0'
// api 'com.dou361.ijkplayer-x86_64:jjdxm-ijkplayer-x86_64:1.0.0'
// api('com.dou361.ijkplayer:jjdxm-ijkplayer:1.0.6') {
// exclude group: 'com.android.support', module: 'appcompat-v7'
// }
api
rootProject
.
ext
.
dependencies
[
"ydl-user-router"
]
api
rootProject
.
ext
.
dependencies
[
"butterknife"
]
if
(
rootProject
.
ext
.
dev_mode
){
//开发时使用
implementation
modularPublication
(
'com.ydl:m-user-api'
)
...
...
ydl-net/build.gradle
View file @
85cfa249
...
...
@@ -40,15 +40,16 @@ dependencies {
androidTestImplementation
'com.android.support.test:runner:1.0.2'
androidTestImplementation
'com.android.support.test.espresso:espresso-core:3.0.2'
api
'com.squareup.retrofit2:retrofit:2.6.0'
api
'com.squareup.retrofit2:converter-gson:2.6.0'
api
'com.squareup.retrofit2:adapter-rxjava2:2.6.0'
api
"io.reactivex.rxjava2:rxjava:2.2.10"
api
'io.reactivex.rxjava2:rxandroid:2.1.1'
api
'com.squareup.retrofit2:converter-scalars:2.4.0'
api
'com.squareup.okhttp3:logging-interceptor:3.12.2'
api
rootProject
.
ext
.
dependencies
[
"gson"
]
api
rootProject
.
ext
.
dependencies
[
"rxjava2"
]
api
(
rootProject
.
ext
.
dependencies
[
"rxandroid2"
])
{
exclude
module:
'rxjava'
}
api
rootProject
.
ext
.
dependencies
[
"retrofit"
]
api
rootProject
.
ext
.
dependencies
[
"okhttp3-logging"
]
api
rootProject
.
ext
.
dependencies
[
"retrofit-converter-gson"
]
api
rootProject
.
ext
.
dependencies
[
"retrofit-converter-scalars"
]
api
rootProject
.
ext
.
dependencies
[
"retrofit-adapter-rxjava2"
]
}
ydl-pay/build.gradle
View file @
85cfa249
...
...
@@ -41,22 +41,6 @@ dependencies {
androidTestImplementation
'com.android.support.test.espresso:espresso-core:3.0.2'
implementation
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation
'com.squareup.retrofit2:retrofit:2.3.0'
implementation
'com.squareup.retrofit2:converter-gson:2.3.0'
implementation
'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
implementation
'com.squareup.okhttp3:logging-interceptor:3.8.0'
implementation
'com.facebook.stetho:stetho:1.5.0'
implementation
'com.facebook.stetho:stetho-okhttp3:1.4.1'
implementation
'io.reactivex.rxjava2:rxandroid:2.0.1'
//noinspection GradleCompatible
implementation
'com.android.support:recyclerview-v7:27.1.1'
implementation
'de.greenrobot:eventbus:2.4.0'
api
'com.umeng.sdk:share-wechat:6.9.1'
if
(
rootProject
.
ext
.
dev_mode
){
//开发时使用
api
project
(
':ydl-platform'
)
...
...
ydl-platform/build.gradle
View file @
85cfa249
...
...
@@ -75,7 +75,12 @@ dependencies {
api
rootProject
.
ext
.
dependencies
[
"ydl-pushagent"
]
api
rootProject
.
ext
.
dependencies
[
"ydl-notracepoint"
]
api
rootProject
.
ext
.
dependencies
[
"ydl-hnet"
]
api
rootProject
.
ext
.
dependencies
[
"imagepicker"
]
api
(
rootProject
.
ext
.
dependencies
[
"imagepicker"
])
{
exclude
group:
'org.jetbrains.kotlin'
,
module:
'kotlin-stdlib'
exclude
group:
'org.jetbrains.kotlin'
,
module:
'kotlin-stdlib-jdk7'
exclude
group:
'org.jetbrains.kotlin'
,
module:
'kotlin-stdlib-common'
}
api
rootProject
.
ext
.
dependencies
[
"ydl-utils"
]
api
rootProject
.
ext
.
dependencies
[
"ydl-js"
]
api
rootProject
.
ext
.
dependencies
[
"ydl-net"
]
...
...
@@ -83,6 +88,9 @@ dependencies {
api
rootProject
.
ext
.
dependencies
[
"ptr-lib-release"
]
api
(
rootProject
.
ext
.
dependencies
[
"ydl-device"
])
{
transitive
=
true
exclude
group:
'org.jetbrains.kotlin'
,
module:
'kotlin-stdlib'
exclude
group:
'org.jetbrains.kotlin'
,
module:
'kotlin-stdlib-jdk7'
exclude
group:
'org.jetbrains.kotlin'
,
module:
'kotlin-stdlib-common'
}
api
(
rootProject
.
ext
.
dependencies
[
"ydl-router"
])
{
transitive
=
true
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment