I\'m developing a photo sharing app for Android that uses the Parse.com platform for the backend.
I have a Main Activity where I\'m fetching the photos from the Parse s
import com.parse.Parse;
import android.app.Application;
public class App extends Application {
@Override
public void onCreate() {
super.onCreate();
Parse.enableLocalDatastore(this);
Parse.initialize(this, PARSE_APPLICATION_ID, PARSE_CLIENT_KEY);
}
}
AndroidManifest.xml
<application
android:name="yourpackagename.App"
.
.
.
</application>