Federico Amura
09/13/2023, 7:11 PMexternal fun swiftWriteLine(path: String, line: String)
and then in the swft folder i added a file with
public static func swiftWriteLine(path: String, line: String) {
print("Hola desde Swift!")
}
But its not working... it says external function <root>.swiftWriteLine must have @TypedIntrinsic, @SymbolName, @GCUnsafeCall or @ObjCMethod annotation
where i have to add these anotations?Jeff Lockhart
09/13/2023, 7:16 PM@objc
attribute for Objective-C/Kotlin compatibility.Federico Amura
09/13/2023, 7:27 PMJeff Lockhart
09/13/2023, 7:30 PMFederico Amura
09/13/2023, 7:32 PMFederico Amura
09/13/2023, 7:37 PMFederico Amura
09/13/2023, 7:44 PM