Back to project page ExpertAndroid.
The source code is released under:
MIT License
If you think the Android project ExpertAndroid 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.iuriio.demos.expertandroid.ch13parsesimple; //from w ww .ja va 2 s. c om import android.app.Application; import com.parse.Parse; import com.parse.ParseACL; /** * Created by iuriio on 10/30/13. */ public class ParseApp extends Application { private static final String PARSE_APPLICATION_ID = "yLA2IvQo8LOu9nkeE43LH9mQGL5dAmdrTnlWqivg"; private static final String PARSE_CLIENT_ID = "jBbQc1Ap9I38BaTSWBlwlT86COut2T5lgTMkGSqk"; @Override public void onCreate() { super.onCreate(); Parse.initialize(this, PARSE_APPLICATION_ID, PARSE_CLIENT_ID); ParseACL defaultACL = new ParseACL(); defaultACL.setPublicReadAccess(true); ParseACL.setDefaultACL(defaultACL, true); } }