Back to project page protohipster.
The source code is released under:
Apache License
If you think the Android project protohipster 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.flipper83.protohipster.feed.datasource.module.api; /*from ww w .j ava 2 s .c o m*/ import android.content.Context; import com.flipper83.protohipster.feed.datasource.api.Api; import com.flipper83.protohipster.feed.datasource.api.call.ApiCall; import com.parse.Parse; /** * */ public class ApiParse implements Api { public ApiParse(Context context){ Parse.initialize(context, "qFiaaQwGeJCdIpp3WUiBeuk0FXC4vRe0wGImASrB", "L8W1fORdrPiOGl63XzlxgUziX8q9f0ylV5tdV2Y1"); } @Override public void call(ApiCall apiCall) { apiCall.call(); } }