Sorry for the extreme basic question, but I’m trying to have a working POC of an Android app running my existing iOS Swift code and I’m stuck at the very beginning.
Tried to assign a textView’s text in the following way:
textView.Text = swiftString
Getting:
error E62: Type mismatch, cannot assign "String" to "Integer"
Which seems unexpected.
I tried to convert it to a java.lang.String or to a CharSequence - it then compiles but code seems to have no affect.
Any pointers?
