Android Question Get current ip address

Solution
Hi Zeev, this works for me (needs the Network library):
B4X:
    Public server As ServerSocket ' Needs the Network library
    server.Initialize(8888, "")
    Log(server.GetMyIP)
    server.Close
Top