merge code
This commit is contained in:
parent
4a9174e8dd
commit
96ee3d1ec5
@ -3,6 +3,7 @@ plugins {
|
|||||||
id 'org.jetbrains.kotlin.android'
|
id 'org.jetbrains.kotlin.android'
|
||||||
id 'kotlin-kapt'
|
id 'kotlin-kapt'
|
||||||
id 'com.google.dagger.hilt.android'
|
id 'com.google.dagger.hilt.android'
|
||||||
|
id 'realm-android'
|
||||||
id 'kotlin-parcelize' // 序列化
|
id 'kotlin-parcelize' // 序列化
|
||||||
id 'androidx.navigation.safeargs.kotlin'//Safe Args传递数据
|
id 'androidx.navigation.safeargs.kotlin'//Safe Args传递数据
|
||||||
}
|
}
|
||||||
@ -73,7 +74,6 @@ android {
|
|||||||
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
|
||||||
implementation project(':collect-library')
|
implementation project(':collect-library')
|
||||||
testImplementation 'junit:junit:4.13.2'
|
testImplementation 'junit:junit:4.13.2'
|
||||||
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'com.android.library'
|
id 'com.android.library'
|
||||||
id 'org.jetbrains.kotlin.android'
|
id 'org.jetbrains.kotlin.android'
|
||||||
|
id 'kotlin-parcelize' // 序列化
|
||||||
|
id 'kotlin-android'
|
||||||
|
id 'kotlin-kapt'
|
||||||
|
id 'realm-android'
|
||||||
}
|
}
|
||||||
apply plugin: 'kotlin-android'
|
|
||||||
apply plugin: 'kotlin-kapt'
|
|
||||||
apply plugin: 'realm-android'
|
|
||||||
|
|
||||||
ext.roomversion = "2.1.0"
|
ext.roomversion = "2.1.0"
|
||||||
ext.vtmVersion = "0.18.0"
|
ext.vtmVersion = "0.18.0"
|
||||||
@ -48,9 +49,15 @@ android {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//configurations.all {
|
||||||
|
// resolutionStrategy {
|
||||||
|
// force 'com.intellij:annotations:13.0'
|
||||||
|
// }
|
||||||
|
//}
|
||||||
dependencies {
|
dependencies {
|
||||||
api fileTree(dir: 'libs', include: ['*.jar'])
|
api fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
||||||
api files('libs/BaiduLBS_Android.jar')
|
api files('libs/BaiduLBS_Android.jar')
|
||||||
|
|
||||||
api 'androidx.core:core-ktx:1.9.0'
|
api 'androidx.core:core-ktx:1.9.0'
|
||||||
api 'androidx.appcompat:appcompat:1.6.1'
|
api 'androidx.appcompat:appcompat:1.6.1'
|
||||||
api 'com.google.android.material:material:1.8.0'
|
api 'com.google.android.material:material:1.8.0'
|
||||||
@ -112,6 +119,17 @@ dependencies {
|
|||||||
kapt "androidx.room:room-compiler:2.5.1"
|
kapt "androidx.room:room-compiler:2.5.1"
|
||||||
kapt "androidx.room:room-ktx:2.5.1"
|
kapt "androidx.room:room-ktx:2.5.1"
|
||||||
|
|
||||||
|
// //分页加载
|
||||||
|
// api "androidx.room:room-paging:$roomversion"
|
||||||
|
// api "androidx.paging:paging-runtime-ktx:3.1.1"
|
||||||
|
|
||||||
androidTestImplementation "android.arch.persistence.room:testing:1.1.1"
|
androidTestImplementation "android.arch.persistence.room:testing:1.1.1"
|
||||||
api 'com.tencent.wcdb:wcdb-android:1.1-19'
|
api 'com.tencent.wcdb:wcdb-android:1.1-19'
|
||||||
|
//api 'de.mrmaffen:libvlc-android:2.1.12@aar'
|
||||||
|
// // 协程核心库
|
||||||
|
// implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4'
|
||||||
|
// // 协程Android支持库
|
||||||
|
// implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
|
||||||
|
// // 协程Java8支持库
|
||||||
|
// implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.6.4'
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user