File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1- name : Kotlin CI
1+ name : Android CI
22
33on :
44 workflow_dispatch :
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.
Original file line number Diff line number Diff line change 1- mod kotlin ;
1+ mod android ;
22mod python;
33mod swift;
44mod 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
2727impl 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
You can’t perform that action at this time.
0 commit comments