Hello All, I’m having issue with email validation ...
# multiplatform
b
Hello All, I’m having issue with email validation on iOS side. Is it because I am using android.util? Any solution to this? Thanks
s
It is because you are using
android.util
. This is simply not available on iOS.
Solution would be finding some pure kotlin/kotlin multiplatform lib that does the thing, or implement the util yourself. Especially here, where it's a regexp and that's it, the latter is a viable solution.
👍 1
b
ty