本文整理汇总了Java中com.avos.avoscloud.AVOSCloud.setLastModifyEnabled方法的典型用法代码示例。如果您正苦于以下问题:Java AVOSCloud.setLastModifyEnabled方法的具体用法?Java AVOSCloud.setLastModifyEnabled怎么用?Java AVOSCloud.setLastModifyEnabled使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.avos.avoscloud.AVOSCloud
的用法示例。
在下文中一共展示了AVOSCloud.setLastModifyEnabled方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initAVSDK
import com.avos.avoscloud.AVOSCloud; //导入方法依赖的package包/类
private void initAVSDK(Context context) {
Map map = this.getAppInfo();
if(map != null && map.get("appId") != null && map.get("appKey") != null) {
// 初始化应用信息
String appId = map.get("appId").toString();
String appKey = map.get("appKey").toString();
AVOSCloud.initialize(context, appId, appKey);
// 启用崩溃错误统计
AVAnalytics.enableCrashReport(context.getApplicationContext(), true);
AVOSCloud.setLastModifyEnabled(true);
AVOSCloud.setDebugLogEnabled(true);
//必须要设置默认的通知回调或者订阅一个频道,否则接收不到通知
mRNPushNotificationHelper = new RNPushNotificationHelper(this.mApplication);
PushService.setDefaultPushCallback(context.getApplicationContext(), mRNPushNotificationHelper.getMainActivityClass());
//this.subscribeChannel("public");
// 保存 installation 到服务器
AVInstallation.getCurrentInstallation().saveInBackground(new SaveCallback() {
public void done(AVException e) {
String installationId = AVInstallation.getCurrentInstallation().getInstallationId();
sendRegistrationToken(installationId);
}
});
}
}
示例2: init
import com.avos.avoscloud.AVOSCloud; //导入方法依赖的package包/类
public void init(Context appContext){
mAppContext = appContext;
mHitalkModel = new HiTalkModel(appContext);
EaterManager.getInstance().registerEater(EaterAction.ACTION_DO_WITH_PREFERENCE,
SharePreferenceHandler.getInstance().setContext(appContext));
AVOSCloud.setLastModifyEnabled(true);
initRemoteClass();
initChatkit();
initPushManager();
initProviders();
eventuallyQueue = new BeanEventuallyQueue(appContext);
}
示例3: AVInit
import com.avos.avoscloud.AVOSCloud; //导入方法依赖的package包/类
public static void AVInit(Context ctx) {
// 注册子类
AVObject.registerSubclass(Images.class);
AVObject.registerSubclass(Shot.class);
AVObject.registerSubclass(PlaidItem.class);
AVOSCloud.setDebugLogEnabled(true);
// 初始化应用 Id 和 应用 Key,您可以在应用设置菜单里找到这些信息
AVOSCloud.initialize(ctx, "x7H9QGolRK3CWPY78NhwNoX1-gzGzoHsz",
"QMaBTdqwLKzetgIG21dijLNA");
// 启用崩溃错误报告
AVAnalytics.enableCrashReport(ctx, true);
AVOSCloud.setLastModifyEnabled(true);
mContext=ctx;
}