# Overview

vchatCloud sdk helps to make chat client implementation easy. Use 'vchatCloud sdk' on Android to use real-time chatting quickly and efficiently. The quick guide provides brief information about the structure and functions of vchatCloud sdk, Each topic provides a guide for application to practical projects based on detailed explanations.

# Experience the chat service

# Enter chat room

    # chat

      # Check implementation code

      # Enter chat room

      // ChatActivity.java
      @Override
      protected void onStart() {
          private static Channel channel = VChatCloud.getInstance().joinChannel(options, new JoinChannelCallback() {
              public void callback(JSONArray history, VChatCloudException e) {
                  super. callback(history, e);
                  int historySize = history. size() -1;
                  for (; historySize >= 0; historySize--) {
                    // handle history message
                    messageExposure(new Message((JSONObject) history.get(historySize)), false);
                  }
                  // apply room title
                  $Title.setText(channel.getRoomName());
                  // save nickname
                  PreferenceManager.setString(getApplicationContext(),"nickName", nick_name);
              }
          });
      }
      
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      17
      18

      # Channel object event handling

        Copyright 2022. E7Works Inc. & JOYTUNE Corp. All Rights Reserved.