yangjae / StatusShare-Android

Sample application demonstrating Kinvey user management, blob storage and access control.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StatusShare-Android

This application allows individual users to share text and photo updates with the other users of the service.

In particular this sample application highlights the following key backend tasks:

  • Allow users to sign up and log in
  • Create public/private shared data
  • Link images to application data
  • Connect on the client-side to 3rd party service (Gravatar)

Set up StatusShare Project

  1. Download the StatusShare project.
  2. In Eclipse, go to File → Import…
  3. Click Android → Existing Android Code into Workspace
  4. Browse… to set Root Directory to the extracted zip from step 1
  5. In the Projects box, make sure the HomeActivity project check box and the library project from Action Bar Sherlock are selected. Then click Finish.
  6. Specify your app key and secret in StatusShareApp constant variables key and secret
public class StatusShareApp extends Application {

	private static final String KINVEY_APP_KEY = "your_app_key";
	private static final String KINVEY_APP_SECRET = "your_app_secret";
	
	...

About

Sample application demonstrating Kinvey user management, blob storage and access control.