The following describe how to run the sample code of the In-app Chat UIKit.
Before you begin, make sure your environment meets the following:
- Android Studio 3.6 or later.
- Android SDK Packages: Android SDK 28, Android SDK Platform - Tools 30.x.x or later
- An Android device or Simulator that is running on Android 5.0 or later. We recommend you use a real device. And please enable the "USB Debugging".
- Android device and your computer are connected to the internet.
- Go to ZEGOCLOUD Admin Console|_blank and do the following:
- Create a project, and get the
AppID
andServerSecret
of your project. - Subscribe the In-app Chat service.
- Create a project, and get the
├── README.md // README file
├── ZIMKit
│ ├── ZIMKitCommon // Common libraries
│ ├── ZIMKitConversation // Session component
│ ├── ZIMKitFull // Dependencies for all components
│ ├── ZIMKitGroup // Group component
│ ├── ZIMKitMessages // Message component
│ ├── app // demo module
│ ├── build.gradle // Global configuration
│ ├── gradle
│ ├── gradle.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── local.properties
│ └── settings.gradle // Module configuration
└── key.jks // The signature used to compile release
- Replace the
AppID
andServerSecret
field in the AppConfig with the AppID and ServerSecret you get. - Click the "Sync" button to synchronize the Gradle and all required dependencies.
- Connect your computer with the Android device, click "Run" button to run the sample code.
- On the login page, enter the userID, click "Log in". You will enter the session list page after logged in successfully.
- You need to create a chat (1-on-1 chat, group chat, or join a chat) first if you are logged in for the first time.
- After creating a chat, you can send messages on the message page.