Skip to content

Commit 0ecacf4

Browse files
committed
V25.
1 parent 8b428c4 commit 0ecacf4

6 files changed

Lines changed: 26 additions & 9 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ buildscript {
55
mavenCentral()
66
}
77
dependencies {
8-
classpath "com.android.tools.build:gradle:7.1.2"
9-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
8+
classpath "com.android.tools.build:gradle:7.1.3"
9+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.0"
1010

1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files

library/build.gradle

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,18 @@ android {
2828

2929
kotlinOptions {
3030
jvmTarget = '11'
31+
freeCompilerArgs = [
32+
'-Xuse-k2'
33+
]
3134
}
3235
}
3336

3437
dependencies {
35-
api 'androidx.core:core-ktx:1.7.0'
36-
api 'androidx.appcompat:appcompat:1.4.1'
37-
api 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0'
38+
api 'androidx.core:core-ktx:1.8.0'
39+
api 'androidx.appcompat:appcompat:1.4.2'
40+
api 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.3'
3841

3942
api 'androidx.room:room-runtime:2.4.2'
4043
api 'androidx.room:room-ktx:2.4.2'
41-
implementation 'javax.annotation:javax.annotation-api:1.3.2'
44+
api 'javax.annotation:javax.annotation-api:1.3.2'
4245
}
4 KB
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version=24
2-
items=1068
1+
version=25
2+
items=1093

library/src/main/java/com/absinthe/rulesbundle/IconResMap.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,14 @@ object IconResMap {
110110
put(97, R.drawable.ic_lib_meituan)
111111
put(98, R.drawable.ic_lib_netease_shield)
112112
put(99, R.drawable.ic_lib_vorbis)
113+
put(100, R.drawable.ic_lib_mapbox)
113114
}
114115

115116
SINGLE_COLOR_ICON_SET = setOf(
116117
-1, 2, 3, 4, 5, 6, 9, 10, 11, 13, 14, 15, 16, 17,
117118
25, 27, 30, 31, 40, 43, 44, 46, 47, 48, 51, 53,
118119
54, 56, 59, 63, 64, 66, 74, 76, 81, 82, 83, 84,
119-
86, 93, 97
120+
86, 93, 97, 100
120121
)
121122
}
122123

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2+
android:width="24dp"
3+
android:height="24dp"
4+
android:viewportWidth="1024"
5+
android:viewportHeight="1024"
6+
android:tint="?attr/colorControlNormal">
7+
<path
8+
android:fillColor="#E3E7EE"
9+
android:pathData="M512,112C291.1,112 112,291.1 112,512C112,732.9 291.1,912 512,912C732.9,912 912,732.9 912,512C912,291.1 732.9,112 512,112ZM701.9,610.1C565.1,746.9 320.8,703.2 320.8,703.2C320.8,703.2 276.7,459.4 413.9,322.1C490,246.1 615.9,249.2 695.6,328.4C775.2,407.6 777.9,534 701.9,610.1Z" />
10+
<path
11+
android:fillColor="#E3E7EE"
12+
android:pathData="M557.9,346.4L518.7,427L438.2,466.1L518.7,505.3L557.9,585.8L597,505.3L677.6,466.1L597,427L557.9,346.4Z" />
13+
</vector>

0 commit comments

Comments
 (0)