Skip to content

Commit c6e71b7

Browse files
author
Ven
committed
feat(assists-ime): 使用根项目配置的SDK版本
将compileSdk和targetSdkVersion改为使用rootProject.ext中的统一配置, 以保持项目间版本的一致性。
1 parent df33cc5 commit c6e71b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assists-ime/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ plugins {
55
}
66
android {
77
defaultConfig {
8-
compileSdk 36
8+
compileSdk rootProject.ext.compileSdk
99
minSdkVersion 23
10-
targetSdkVersion 36
10+
targetSdkVersion rootProject.ext.targetSdk
1111
}
1212
buildTypes {
1313
release {

0 commit comments

Comments
 (0)