Skip to content

Commit 77e0263

Browse files
committed
chore: rename kotlin to android
1 parent b29e441 commit 77e0263

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/kotlin_ci.yml renamed to .github/workflows/android_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Kotlin CI
1+
name: Android CI
22

33
on:
44
workflow_dispatch:
@@ -30,7 +30,7 @@ jobs:
3030
ndk-version: r27d
3131

3232
- name: Build AAR
33-
run: cargo pkg transact kotlin
33+
run: cargo pkg transact aar
3434

3535
- name: Archive Build Output
3636
uses: actions/upload-artifact@v4
File renamed without changes.

tools/build_pkgs/src/main.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mod kotlin;
1+
mod android;
22
mod python;
33
mod swift;
44
mod typescript;
@@ -20,8 +20,8 @@ enum Language {
2020
#[value(alias = "ts")]
2121
Typescript,
2222
Swift,
23-
#[value(alias = "kt")]
24-
Kotlin,
23+
#[value(alias = "aar")]
24+
Android,
2525
}
2626

2727
impl Display for Language {
@@ -30,7 +30,7 @@ impl Display for Language {
3030
Language::Python => f.write_str("python"),
3131
Language::Typescript => f.write_str("typescript"),
3232
Language::Swift => f.write_str("swift"),
33-
Language::Kotlin => f.write_str("kotlin"),
33+
Language::Android => f.write_str("android"),
3434
}
3535
}
3636
}
@@ -41,7 +41,7 @@ impl Language {
4141
Self::Python => python::build(pkg),
4242
Self::Typescript => typescript::build(pkg),
4343
Self::Swift => swift::build(pkg),
44-
Self::Kotlin => kotlin::build(pkg),
44+
Self::Android => android::build(pkg),
4545
}
4646
}
4747

0 commit comments

Comments
 (0)