Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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");
         }
   }
};
share|improve this question
try to set in your manifest <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="17" /> – MoshErsan Mar 11 at 7:47
1  
post your logcat that could me you are running network on ui thread – DjHacktorReborn Mar 11 at 7:47
@MoshErsan he needs minsdk 11 – DjHacktorReborn Mar 11 at 7:48
@DjHacktorReborn yeah you are right. – MoshErsan Mar 11 at 7:55
@user2155836 just try to run your code in new thread. – MoshErsan Mar 11 at 8:18
show 4 more comments

1 Answer

Put this in AsyncTask

//Establish Pump Connection
          socket = new Socket(str_ip, int_port);
          out = new DataOutputStream(socket.getOutputStream());
          in = new DataInputStream(socket.getInputStream());

Like This example

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.