I coded an app before that uses the socket class to create a TCP/IP Client like this:
Socket soc;
DataOutputStream out;
DataInputStream in;
//in try-catch loop
soc = new ("192.168.1.101", 100);
out = new DataOutputStream(socket.getOutputStream());
in = new DataInputStream(socket.getInputStream());
.....//code on I/O through socket
And it works fine on my previous ap, running sdk 9
Now I am trying to use the same function in my new app, which make uses of fragment and needed sdk 11. But the app crashes whenever it runs the socket code. Once I change the android:minSdkVersion to 9 in manifest.xml, it works again. But I needed minSDK 11 for fragment.
What should I do? I have only code Android for few months, forgive me if I asked stupid question.Thanks a lot!
Edited: This is the OnClick function that triggered the Socket funcitons:
private Button.OnClickListener m_BtnConnectDisconnectOnClick = new Button.OnClickListener()
{
public void onClick(View v)
{
try
{
//Obtaining IP Address & Port number
String str_ip = m_EditPumpIP.getText().toString();
int int_port = Integer.parseInt(m_EditPumpPort.getText().toString());
//Establish Pump Connection
socket = new Socket(str_ip, int_port);
out = new DataOutputStream(socket.getOutputStream());
in = new DataInputStream(socket.getInputStream());
//Update Status
m_TextSystemStatus.setText("OK");
}
catch (IOException e)
{
//Update Status
m_TextSystemStatus.setText("Fail");
}
}
};
<uses-sdk android:minSdkVersion="9" android:targetSdkVersion="17" />– MoshErsan Mar 11 at 7:47