Commit 2108e739 by zhangchengbo

fix:添加ARouter依赖引用

parent 5cbed438
...@@ -39,6 +39,20 @@ android { ...@@ -39,6 +39,20 @@ android {
ksp { ksp {
arg("room.schemaLocation", "$projectDir/schemas") arg("room.schemaLocation", "$projectDir/schemas")
} }
//ARouter
/* javaCompileOptions {
annotationProcessorOptions {
arguments["AROUTER_MODULE_NAME"] = project.name
}
}
kapt {
arguments {
arg("AROUTER_MODULE_NAME", project.name)
}
}*/
} }
/*signingConfigs { /*signingConfigs {
...@@ -159,5 +173,8 @@ dependencies { ...@@ -159,5 +173,8 @@ dependencies {
//引入Librarys //引入Librarys
implementation(projects.commons) implementation(projects.commons)
//添加ARouter引用
// implementation(libs.arouter)
// kapt(libs.arouterCompiler)
} }
...@@ -70,9 +70,14 @@ reprint = "2cb206415d" ...@@ -70,9 +70,14 @@ reprint = "2cb206415d"
androidx-documentfile = "1.0.1" androidx-documentfile = "1.0.1"
androidx-exifinterface = "1.3.6" androidx-exifinterface = "1.3.6"
arouterCompilerVersion = "1.5.2"
##################################################################### #####################################################################
[libraries] [libraries]
arouter = { module = "com.alibaba:arouter-api", version.ref = "arouterCompilerVersion" }
arouterCompiler = { module = "com.alibaba:arouter-compiler", version.ref = "arouterCompilerVersion" }
androidx-documentfile = { module = "androidx.documentfile:documentfile", version.ref = "androidx-documentfile" } androidx-documentfile = { module = "androidx.documentfile:documentfile", version.ref = "androidx-documentfile" }
androidx-exifinterface = { module = "androidx.exifinterface:exifinterface", version.ref = "androidx-exifinterface" } androidx-exifinterface = { module = "androidx.exifinterface:exifinterface", version.ref = "androidx-exifinterface" }
reprint = { module = "com.github.tibbi:reprint", version.ref = "reprint" } reprint = { module = "com.github.tibbi:reprint", version.ref = "reprint" }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment