Skip to content

Commit 5f32088

Browse files
committed
fix(android): remove space before Android SDK target version
Remove unnecessary space before the Android SDK target version to improve text formatting.
1 parent bfb1e61 commit 5f32088

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

exts/ext-android/src/main/kotlin/cc/unitmesh/android/provider/AndroidChatContextProvider.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import cc.unitmesh.android.util.AdSdkFinder
44
import cc.unitmesh.devti.provider.context.ChatContextItem
55
import cc.unitmesh.devti.provider.context.ChatContextProvider
66
import cc.unitmesh.devti.provider.context.ChatCreationContext
7-
import com.android.sdklib.AndroidVersion
87
import com.android.tools.idea.model.AndroidModel
98
import com.android.tools.idea.projectsystem.getAndroidFacets
109
import com.intellij.openapi.project.Project
@@ -19,7 +18,7 @@ class AndroidChatContextProvider : ChatContextProvider {
1918
var text = "This project is a Mobile Android project."
2019
val sdkVersion = getProjectAndroidTargetSdkVersion(project)
2120
if (sdkVersion != null) {
22-
text += " Android SDK target version is $sdkVersion."
21+
text += "Android SDK target version is $sdkVersion."
2322
}
2423

2524
return listOf(ChatContextItem(AndroidChatContextProvider::class, text))

0 commit comments

Comments
 (0)