Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.util.Log;
import java.util.Date;

public class Main {
    public static String message;

    public static void invokeMethodFormRed5(String toUserId) {
        Date nowDate = new Date();
        String time = nowDate.getTime() + "" + (int) ((Math.random() * 100) % 100);
        message = time;
        //      connection.call("createMeeting", responder, User.id + "", toUserId, message);
        Log.d("DEBUG", "call createMeeting");
    }
}