Skip to content

Commit 919f6c8

Browse files
committed
chore: rename kotlin to android
1 parent 978793e commit 919f6c8

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

@@ -17,16 +17,16 @@ enum Language {
1717
#[value(alias = "py")]
1818
Python,
1919
Swift,
20-
#[value(alias = "kt")]
21-
Kotlin,
20+
#[value(alias = "aar")]
21+
Android,
2222
}
2323

2424
impl Display for Language {
2525
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
2626
match self {
2727
Language::Python => f.write_str("python"),
2828
Language::Swift => f.write_str("swift"),
29-
Language::Kotlin => f.write_str("kotlin"),
29+
Language::Android => f.write_str("android"),
3030
}
3131
}
3232
}
@@ -36,7 +36,7 @@ impl Language {
3636
match self {
3737
Self::Python => python::build(pkg),
3838
Self::Swift => swift::build(pkg),
39-
Self::Kotlin => kotlin::build(pkg),
39+
Self::Android => android::build(pkg),
4040
}
4141
}
4242

0 commit comments

Comments
 (0)