Back to project page android-messaging-tutorial.
The source code is released under:
MIT License
If you think the Android project android-messaging-tutorial listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.sinch.messagingtutorial.app; /* w w w . j a v a 2 s . c o m*/ import android.app.Application; import com.parse.Parse; public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); Parse.initialize(this, "app-id", "client-key"); } }