这里我将parse库添加到我的应用程序中。但在我的主要活动中,我遇到了parse.initialize错误。
public void onCreate() {
Parse.initialize(this, "id",
"id");
PushService.setDefaultPushCallback(this, MyActivity.class);
}
答案 0 :(得分:1)
您在活动中使用初始化,您应该尝试使用文档中的Application类
推荐的方法是调用Parse.initialize 应用程序的onCreate方法。
一个例子:
import android.app.Application;
import com.parse.Parse;
public class MyApplication extends Application {
public void onCreate() {
Parse.initialize(this, "your application id", "your client key");
}
}
您还应该添加到您的清单
<application
android:name="YourPackageName.MyApplication"
</application>