SnapChat clone written in Android, based off of the Treehouse tutorial!
To run this application you need a parse.com account. Then you need to open SnapApplication.java
and replace the APPLICATION_ID
and CLIENT_KEY
with your credentials.
package me.mhsjlw.android_snap;
import ...
public class SnapApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Parse.initialize(this, "APPLICATION_ID", "CLIENT_KEY");
}
}
See the LICENSE file