6.2.0 - 重新设计及编写项目文档; 新增多语言适配; 丰富控件选择器功能; 优化夜间模式适配等
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
configurations.maybeCreate('default')
|
||||
artifacts.add('default',
|
||||
// @Reference to TonyJiangWJ/Auto.js on Mar 18, 2022.
|
||||
file('opencv-4.5.5.aar')
|
||||
)
|
||||
12
libs/org.opencv-4.5.5/build.gradle.kts
Normal file
12
libs/org.opencv-4.5.5/build.gradle.kts
Normal file
@@ -0,0 +1,12 @@
|
||||
// @Reference
|
||||
// ! Current library (OpenCV) was referred to TonyJiangWJ/Auto.js on Mar 18, 2022.
|
||||
|
||||
"opencv-4.5.5.aar"
|
||||
.let { path ->
|
||||
rootProject.extra["configurationName"].toString().let { name ->
|
||||
configurations.maybeCreate(name)
|
||||
file(path).takeIf { it.exists() }?.also {
|
||||
artifacts.add(name, it)
|
||||
} ?: throw Exception("File not found: \"$path\"")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user