Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
ShenghuoquanBusiness
Project
Project
Details
Activity
Releases
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
bp
ShenghuoquanBusiness
Commits
ce39f500
Commit
ce39f500
authored
Oct 14, 2021
by
shiyl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新本地yac-engine插件版本,修复本地aar依赖问题
parent
92c77812
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
33 deletions
+4
-33
build.gradle
CommonLib/BCommon/build.gradle
+0
-5
build.gradle
build.gradle
+1
-3
config.gradle
config/config.gradle
+3
-25
No files found.
CommonLib/BCommon/build.gradle
View file @
ce39f500
...
@@ -58,8 +58,6 @@ android {
...
@@ -58,8 +58,6 @@ android {
dependencies
{
dependencies
{
// 注意高德地图jar引入需要其他组件可以使用,故而api
// 注意高德地图jar引入需要其他组件可以使用,故而api
api
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
,
'*.aar'
])
api
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
,
'*.aar'
])
// api(name: 'yac-core-0.0.6', ext: 'aar')
implementation
"org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation
"org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
// kotlin实现MVVM框架之使用DataBinding之unresolved reference: BR解决办法
// kotlin实现MVVM框架之使用DataBinding之unresolved reference: BR解决办法
kapt
"com.android.databinding:compiler:4.0.1"
kapt
"com.android.databinding:compiler:4.0.1"
...
@@ -68,7 +66,4 @@ dependencies {
...
@@ -68,7 +66,4 @@ dependencies {
compileOnly
rootProject
.
ext
.
dependencies
.
privateImplementation
compileOnly
rootProject
.
ext
.
dependencies
.
privateImplementation
testImplementation
rootProject
.
ext
.
dependencies
.
testImplementation
testImplementation
rootProject
.
ext
.
dependencies
.
testImplementation
androidTestImplementation
rootProject
.
ext
.
dependencies
.
androidTestImplementation
androidTestImplementation
rootProject
.
ext
.
dependencies
.
androidTestImplementation
// api('com.yidian.android:CommonComponent:0.0.88') {
// exclude(group: 'com.yidian.android', module: 'NetworkImageLib')
// }
}
}
\ No newline at end of file
build.gradle
View file @
ce39f500
...
@@ -8,12 +8,11 @@ buildscript {
...
@@ -8,12 +8,11 @@ buildscript {
mavenCentral
()
mavenCentral
()
maven
{
url
'https://jitpack.io'
}
maven
{
url
'https://jitpack.io'
}
maven
{
url
uri
(
"repo"
)
}
maven
{
url
uri
(
"repo"
)
}
maven
{
url
"../repo"
}
}
}
dependencies
{
dependencies
{
classpath
"com.android.tools.build:gradle:4.0.1"
classpath
"com.android.tools.build:gradle:4.0.1"
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath
"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath
"com.yidian.yac:yac-engine:0.0.
6
"
classpath
"com.yidian.yac:yac-engine:0.0.
7
"
// classpath files('CommonLib/BCommon/libs/yac-engine-0.0.6.jar')
// classpath files('CommonLib/BCommon/libs/yac-engine-0.0.6.jar')
// NOTE: Do not place your application dependencies here; they belong
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// in the individual module build.gradle files
...
@@ -27,7 +26,6 @@ allprojects {
...
@@ -27,7 +26,6 @@ allprojects {
mavenCentral
()
mavenCentral
()
maven
{
url
'https://jitpack.io'
}
maven
{
url
'https://jitpack.io'
}
maven
{
url
uri
(
"repo"
)
}
maven
{
url
uri
(
"repo"
)
}
maven
{
url
"../repo"
}
}
}
}
}
...
...
config/config.gradle
View file @
ce39f500
...
@@ -37,27 +37,6 @@ ext.dependencies = [
...
@@ -37,27 +37,6 @@ ext.dependencies = [
'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0'
,
'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.0'
,
"androidx.recyclerview:recyclerview:1.1.0"
,
"androidx.recyclerview:recyclerview:1.1.0"
,
// // 一点内部SDK
// 'com.yidian.android:CommonUtil:0.0.88',
// 'com.yidian.android:nightmode:0.0.88',
// // 风控SDK
// 'com.yidian.ftcomponents:ftdevicefinger:0.0.14',
// // http框架
// 'com.yidian.framework.mobile:ydhttp:1.1.3-SNAPSHOT',
// 'com.yidian.framework.mobile:ydutils:1.0.1-SNAPSHOT',
// // 磐石
// 'com.yidian.framework.mobile:xdiamond:1.1.1',
// // 慧眼
// 'com.yidian.framework.mobile.xinsight:xinsight:1.1.7',
// // NA页面栈
// 'com.yidian.xpage:xpagenative:0.0.1',
// // 组件化架构
// deps.yac.core,
// deps.xarc.xbrid,
// deps.xarc.xbase,
// deps.xarc.xrouter,
// deps.xarc.xevent,
// 第三方SDK
// 第三方SDK
// 屏幕适配 https://github.com/JessYanCoding/AndroidAutoSize
// 屏幕适配 https://github.com/JessYanCoding/AndroidAutoSize
'me.jessyan:autosize:1.2.1'
,
'me.jessyan:autosize:1.2.1'
,
...
@@ -88,13 +67,12 @@ ext.dependencies = [
...
@@ -88,13 +67,12 @@ ext.dependencies = [
'com.squareup.retrofit2:retrofit:2.9.0'
,
'com.squareup.retrofit2:retrofit:2.9.0'
,
'org.greenrobot:eventbus:3.0.0'
,
'org.greenrobot:eventbus:3.0.0'
,
'com.loopj.android:android-async-http:1.4.9'
,
'com.loopj.android:android-async-http:1.4.9'
,
'com.squareup.retrofit2:adapter-rxjava3:2.9.0'
,
'com.squareup.retrofit2:converter-gson:2.9.0'
,
'com.squareup.okhttp3:logging-interceptor:4.9.2'
],
],
// 私有依赖 B端自己使用的依赖(不输出给C端)只在B端使用的组件以implementation依赖 需要输出给C端的组件以compileOnly依赖
// 私有依赖 B端自己使用的依赖(不输出给C端)只在B端使用的组件以implementation依赖 需要输出给C端的组件以compileOnly依赖
privateImplementation
:
[
privateImplementation
:
[
// 一点内部SDK
// 应用升级SDK
// 'com.yidian.pmcomponents:appupdate:0.0.8',
// 第三方SDK
// 第三方SDK
// 友盟基础组件(必选)
// 友盟基础组件(必选)
'com.umeng.umsdk:common:9.4.0'
,
'com.umeng.umsdk:common:9.4.0'
,
...
...
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