codepath/android-parse-simple-chat

Name: android-parse-simple-chat

Owner: CodePath

Description: null

Created: 2016-02-17 10:23:35.0

Updated: 2017-04-16 09:20:08.0

Pushed: 2016-02-17 10:34:25.0

Homepage: null

Size: 92

Language: Java

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

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.

Usage

In order to be able to run this app, clone it and update the applicationId, server and clientKey in ChatApplication.java file.

e.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

Chat App|250


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.