6.7.0 - Alpha23 - 移除 "android.enableJetifier=true"; 模块化 Expandable Layout, Expandable RecyclerView, Recyclerview Flexible Divider
This commit is contained in:
@@ -284,9 +284,9 @@ dependencies /* Test */ {
|
||||
|
||||
dependencies /* Annotations */ {
|
||||
// Android Annotations
|
||||
implementation(libs.androidannotations.api)
|
||||
implementation(libs.android.annotations.api)
|
||||
implementation(libs.annotation)
|
||||
ksp(libs.androidannotations)
|
||||
ksp(libs.android.annotations)
|
||||
|
||||
// JCIP Annotations
|
||||
implementation(libs.jcip.annotations)
|
||||
@@ -332,14 +332,12 @@ dependencies /* Material Dialogs */ {
|
||||
dependencies /* Layout */ {
|
||||
// Expandable Layout
|
||||
// implementation("com.github.aakira:expandable-layout:1.6.0")
|
||||
implementation(project(":libs:expandable-layout-1_6_0"))
|
||||
// implementation(project(":libs:expandable-layout-1_6_0"))
|
||||
implementation(project(":modules:expandable-layout"))
|
||||
|
||||
// Expandable RecyclerView
|
||||
implementation(libs.expandablerecyclerview)
|
||||
implementation(project(":modules:expandable-recyclerview"))
|
||||
|
||||
// Flexible Divider
|
||||
// implementation("com.yqritc:recyclerview-flexibledivider:1.4.0")
|
||||
implementation(project(":libs:recyclerview-flexibledivider-1_4_0"))
|
||||
implementation(project(":modules:recyclerview-flexibledivider"))
|
||||
}
|
||||
|
||||
dependencies /* View */ {
|
||||
|
||||
@@ -115,7 +115,7 @@ class Selector(private val scriptRuntime: ScriptRuntime) : Augmentable(scriptRun
|
||||
when {
|
||||
arg !is Double -> arg
|
||||
paramType == Double::class.java || paramType == java.lang.Double.TYPE -> arg
|
||||
paramType == Float::class.java || paramType == java.lang.Float.TYPE -> arg.toDouble()
|
||||
paramType == Float::class.java || paramType == java.lang.Float.TYPE -> arg.toFloat()
|
||||
paramType == Long::class.java || paramType == java.lang.Long.TYPE -> arg.roundToLong()
|
||||
paramType == Int::class.java || paramType == Integer.TYPE -> arg.roundToInt()
|
||||
paramType == Short::class.java || paramType == java.lang.Short.TYPE -> arg.toInt().toShort()
|
||||
|
||||
Reference in New Issue
Block a user