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
36214831
Commit
36214831
authored
Jun 22, 2022
by
万齐军
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: resource依赖改动2
parent
097db872
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
21 additions
and
28 deletions
+21
-28
build.gradle
app/build.gradle
+1
-0
config.gradle
config.gradle
+2
-3
build.gradle
m-audioim/build.gradle
+0
-7
build.gradle
m-course/build.gradle
+1
-1
build.gradle
m-im/build.gradle
+1
-1
build.gradle
m-tests/build.gradle
+1
-1
build.gradle
m-user/build.gradle
+1
-1
build.gradle
ydl-platform/build.gradle
+1
-1
build.gradle
ydl-resource/build.gradle
+12
-12
AndroidManifest.xml
ydl-resource/src/main/AndroidManifest.xml
+1
-1
No files found.
app/build.gradle
View file @
36214831
...
...
@@ -182,6 +182,7 @@ dependencies {
implementation
(
rootProject
.
ext
.
dependencies
[
"appcompat-v7"
])
testImplementation
'junit:junit:4.13.2'
androidTestImplementation
'androidx.test.ext:junit:1.1.2'
implementation
"com.ydl.aar:resource:0.0.1-xlzx"
// kapt rootProject.ext.dependencies["dagger2-compiler"]
implementation
(
rootProject
.
ext
.
dependencies
[
"design"
])
...
...
config.gradle
View file @
36214831
...
...
@@ -231,9 +231,8 @@ ext {
//业务组件 <<--- 最后发这些(只发改过的)
"ydl-m-user-api"
:
"com.ydl:m-user-api:1.0.0"
,
"ydl-m-fm-api"
:
"com.ydl:m-fm-api:1.0.0"
,
"ydl-m-tests-api"
:
"com.ydl:m-tests-api:${ydlPublishVersion["
m
-
tests
-
api
"]}"
,
"ydl-m-audioim-api"
:
"com.ydl:m-audioim-api:${ydlPublishVersion["
m
-
audioim
-
api
"]}"
,
"ydl-m-im-api"
:
"com.ydl:m-im-api:${ydlPublishVersion["
m
-
im
-
api
"]}"
,
"ydl-m-tests-api"
:
"com.ydl:m-tests-api:1.0.0"
,
"ydl-m-im-api"
:
"com.ydl:m-im-api:1.0.0"
,
"ydl-m-home-api"
:
"com.ydl:m-home-api:${ydlPublishVersion["
m
-
home
-
api
"]}"
,
"ydl-m-consultant-api"
:
"com.ydl:m-consultant-api:1.0.0"
,
"ydl-m-dynamic-api"
:
"com.ydl:m-dynamic-api:1.0.0"
,
...
...
m-audioim/build.gradle
View file @
36214831
...
...
@@ -3,13 +3,6 @@ apply plugin: 'kotlin-android'
apply
plugin:
'kotlin-android-extensions'
apply
plugin:
'kotlin-kapt'
apply
from:
"../maven_push.gradle"
apply
plugin:
'resTools'
// 资源重命名插件
// 配置资源重命名插件
resConfig
{
new_prefix
=
'audioim_'
// 资源前缀
old_prefix
=
''
// 老前缀,可为''空字符串
}
kapt
{
arguments
{
...
...
m-course/build.gradle
View file @
36214831
...
...
@@ -50,7 +50,7 @@ dependencies {
api
'com.github.princekin-f:EasyFloat:1.3.2'
api
rootProject
.
ext
.
dependencies
[
"ydl-user-router"
]
implementation
project
(
":ydl-resource"
)
compileOnly
"com.ydl.aar:resource:0.0.1-ydl"
if
(
rootProject
.
ext
.
dev_mode
){
//开发时使用
implementation
project
(
":api:consultant"
)
...
...
m-im/build.gradle
View file @
36214831
...
...
@@ -62,7 +62,7 @@ dependencies {
implementation
rootProject
.
ext
.
dependencies
[
"BaseRecyclerViewAdapterHelper"
]
api
'com.tencent.tbs.tbssdk:sdk:43903'
implementation
project
(
':ydl-resource'
)
compileOnly
"com.ydl.aar:resource:0.0.1-ydl"
if
(
rootProject
.
ext
.
dev_mode
){
//开发时使用
api
project
(
':ydl-webview'
)
...
...
m-tests/build.gradle
View file @
36214831
...
...
@@ -39,7 +39,7 @@ dependencies {
// 注意此处的依赖方式:kotlin中使用和java中使用方式有不同
kapt
"com.alibaba:arouter-compiler:$arouter_compiler"
implementation
project
(
":ydl-resource"
)
compileOnly
"com.ydl.aar:resource:0.0.1-ydl"
api
rootProject
.
ext
.
dependencies
[
"ydl-user-router"
]
if
(
rootProject
.
ext
.
dev_mode
){
//开发时使用
...
...
m-user/build.gradle
View file @
36214831
...
...
@@ -51,7 +51,7 @@ dependencies {
kapt
'com.alibaba:arouter-compiler:1.2.2'
implementation
"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation
project
(
":ydl-resource"
)
compileOnly
"com.ydl.aar:resource:0.0.1-ydl"
api
rootProject
.
ext
.
dependencies
[
"ydl-user-router"
]
if
(
rootProject
.
ext
.
dev_mode
){
//开发时使用
...
...
ydl-platform/build.gradle
View file @
36214831
...
...
@@ -76,7 +76,7 @@ dependencies {
// api rootProject.ext.dependencies["ydl-pushagent"]
// api rootProject.ext.dependencies["ydl-hnet"]
implementation
'com.volcengine:apm_insight:1.4.6.cn'
implementation
project
(
":ydl-resource"
)
implementation
"com.ydl.aar:resource:0.0.1-ydl"
api
(
rootProject
.
ext
.
dependencies
[
"ydl-notracepoint"
])
{
transitive
=
true
exclude
group:
'com.google.code.gson'
,
module:
'gson'
...
...
ydl-resource/build.gradle
View file @
36214831
...
...
@@ -7,21 +7,21 @@ android {
minSdkVersion
21
targetSdkVersion
28
//
flavorDimensions "versionCode"//Flavor 维度信息
flavorDimensions
"versionCode"
//Flavor 维度信息
}
// productFlavors {
// ydl {}
// xlzx {}
// }
sourceSets
{
main
{
res
.
srcDirs
=
[
'src/main/res'
,
'src/ydl/res'
]
}
productFlavors
{
ydl
{}
xlzx
{}
}
// sourceSets {
// main {
// res.srcDirs = [
// 'src/main/res',
// 'src/ydl/res'
// ]
// }
// }
buildTypes
{
release
{
minifyEnabled
false
...
...
ydl-resource/src/main/AndroidManifest.xml
View file @
36214831
<manifest
package=
"com.ydl.
them
e"
/>
<manifest
package=
"com.ydl.
resourc
e"
/>
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