If I'm applying an Android application on my HTC mobile and I want to send my location to my server using python code, how can I do this? I made this method in my Android application which is a maps view and some overlay items
enter code here
public void connect(View view){
try{
clientSocket= new Socket("10.0.2.2",54633);
Text.append( "\n created a socket");
}catch(Exception e){
System.out.println("Error");
}
}
and same id and port in my python code but do I have to enter the HTC ip address or what?!! Also how can I send the location?