¿Cómo usar Gson para serializar objetos en Android?

Quiero enviar 2 objetos al servidor Java desde el cliente de Android usando un socket (ya que estoy desarrollando una PC remota).

AndroidClient.java

    public class MainActivity extends Activity{
        Socket client;
        ObjectOutputStream oos;
        OutputStream os;

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
                    SendObj so=new SendObj();
                    so.execute();
        }

        class SendObj extends AsyncTask<Void, Void, Void>{
            @Override
            protected Void doInBackground(Void... arg0) {
                    try {
                        client=new Socket("192.168.237.1",6566);
                        os=client.getOutputStream();
                        oos=new ObjectOutputStream(os);
                        Serializer ma=new Serializer(2, "Helllo");
                        Log.i("Serial",""+ma.name);
                        oos.writeObject(ma);
                        oos.writeObject(new String("Another Object from Client"));
                        oos.close();
                        os.close();
                        client.close();
                    } catch (UnknownHostException e) {
                        e.printStackTrace();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                    return null;
            }
        }

        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.main, menu);
            return true;
        }

    }

    @SuppressWarnings("serial")
    class Serializer  implements Serializable {
        int num;
        String name;
        public Serializer(int num,String name){
            this.name=name;
            this.num=num;
        }
    }

JavaServer.java

public class ObjectReceiver {
        static ServerSocket server;
        static Socket client;
        static ObjectInputStream ois;
        static InputStream is;

        public static void main(String[] arg) throws IOException, ClassNotFoundException{
            server=new ServerSocket(6566);
            System.out.println("Wait");
            while(true){
                client=server.accept();
                System.out.println("Connected");
                is=client.getInputStream();
                ois=new ObjectInputStream(is);
                try {
                    ObjectSerail or = (ObjectSerail) ois.readObject();
                    if(or!=null){
                        System.out.println("Done");
                    }
                } catch (ClassNotFoundException e) {
                    e.printStackTrace();
                }

            }
        }

        @SuppressWarnings("serial")
        class ObjectSerail implements Serializable{
             int num;
             String name;
            public ObjectSerail(int num,String name){
                th,is.name=name;
                this.num=num;
            }
        }
    }

Por supuesto, sé que el método anterior no funcionará porque daráClassNotFoundException(). Así que ahora quiero saber cómo puedo usar la biblioteca Gson para serializar y deserializar los objetos. Gracias por adelantado.

Respuestas a la pregunta(1)

Su respuesta a la pregunta