Back to project page AndRemote.
The source code is released under:
GNU General Public License
If you think the Android project AndRemote listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.utopik.andremote.app; // w w w . ja va2s .com import android.util.Log; import java.io.PrintWriter; /** * Created by geoffrey on 07/05/14. */ public class Command { public static PrintWriter out = null; public static void sendCmd(String cmd) { if (out != null) { out.println(cmd); Log.i("Command", cmd); } } }