Back to project page CCSocialNetwork.
The source code is released under:
GNU Lesser General Public License
If you think the Android project CCSocialNetwork 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 org.example.SocialNetwork; //from w w w.j a va 2 s . c om import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.util.Log; /** * Class to send a custom e-mail * * See you I call it from C++ using InterfaceJNI * * @author piperoman 2013 * */ public class EmailSender { /** * Send an email */ public static void sendEmail() { Log.v("EmailSender", "sendEmail Start"); } }