https://github.com/codepath/android-parse-simple-chat
https://github.com/codepath/android-parse-simple-chat
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/codepath/android-parse-simple-chat
- Owner: codepath
- Created: 2016-02-17T10:23:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-17T10:34:25.000Z (over 9 years ago)
- Last Synced: 2023-05-10T14:13:27.597Z (about 2 years ago)
- Language: Java
- Size: 89.8 KB
- Stars: 4
- Watchers: 19
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Chat Client Using Parse
The sample code explains how to build a very simple chat application in Android using Parse backend-as-a-service.
>**Note:** This chat application is by no means a fully-featured or production ready chat function. This tutorial is an illustration of how to quickly build an app using [Parse](https://www.parse.com).
## Usage
In order to be able to run this app, clone it and update the `applicationId`, `server` and `clientKey` in `ChatApplication.java` file.
```java
Parse.initialize(new Parse.Configuration.Builder(this)
.applicationId("YOUR_APPLICATION_ID") // should correspond to APP_ID env variable
.addNetworkInterceptor(new ParseLogInterceptor())
.server("https://myparseapp.herokuapp.com/parse/")
.clientKey("YOUR_CLIENT_KEY").build());
```## Final Output
