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;
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
2424impl 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
You can’t perform that action at this time.
0 commit comments