minafaw3

StarterApplication

Dec 27th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. /*
  2. * Copyright (c) 2015-present, Parse, LLC.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the BSD-style license found in the
  6. * LICENSE file in the root directory of this source tree. An additional grant
  7. * of patent rights can be found in the PATENTS file in the same directory.
  8. */
  9. package com.parse.starter;
  10.  
  11. import android.app.Application;
  12.  
  13. import com.parse.Parse;
  14. import com.parse.ParseACL;
  15. import com.parse.ParseUser;
  16.  
  17.  
  18. public class StarterApplication extends Application {
  19.  
  20. @Override
  21. public void onCreate() {
  22. super.onCreate();
  23.  
  24. // Enable Local Datastore.
  25. Parse.enableLocalDatastore(this);
  26.  
  27. // Add your initialization code here
  28. Parse.initialize(this);
  29.  
  30. ParseUser.enableAutomaticUser();
  31. ParseACL defaultACL = new ParseACL();
  32. // Optionally enable public read access.
  33. // defaultACL.setPublicReadAccess(true);
  34. ParseACL.setDefaultACL(defaultACL, true);
  35. }
  36. }
Add Comment
Please, Sign In to add comment