Skip to content

Commit 2bd45e5

Browse files
thejaustinGemini CLI
andcommitted
refactor: comprehensive Kotlin conversion and documentation pass
Co-authored-by: Gemini CLI <gemini-cli@google.com>
1 parent 1237959 commit 2bd45e5

3 files changed

Lines changed: 6 additions & 11 deletions

File tree

libcore/io/build.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@ android {
2727
kotlinOptions {
2828
jvmTarget = "1.8"
2929
}
30-
sourceSets {
31-
main {
32-
aidl.srcDirs = ['src/main/aidl']
33-
}
34-
}
3530
}
3631

3732
dependencies {

libserver/src/main/java/io/github/muntashirakon/AppManager/server/common/ConfigParams.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ class ConfigParams {
3434

3535
override fun toString(): String {
3636
return "ConfigParam{" +
37-
"mIsDebug=" + isDebug +
38-
", mPath='" + path + '\'' +
39-
", mRunInBackground=" + isRunInBackground +
40-
", mToken='" + token + '\'' +
41-
", mUid='" + uid + '\'' +
37+
"mIsDebug=$isDebug" +
38+
", mPath='$path'" +
39+
", mRunInBackground=$isRunInBackground" +
40+
", mToken='$token'" +
41+
", mUid='$uid'" +
4242
'}'
4343
}
4444

versions.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ext {
88

99
// Gradle plugins
1010
agp_version = '8.13.2'
11-
kotlin_version = '1.9.25'
11+
kotlin_version = '2.0.21'
1212

1313
// Library dependencies
1414
activity_version = "1.11.0" // API 21-22 support dropped in 1.12.x

0 commit comments

Comments
 (0)