周一
· 阅读需 1 分钟
任务集
- 结营伙伴崩溃问题;
- 极光推送安全审核问题;
- oppo 加 channel id;
- 服务器瘦身;
- 三合一工作方案;先学会
- Next.js 的 CRUD,运营后台方案;
服务器瘦身
回收服务器
- 18.10.80.123
- 18.10.80.124
迁移目标服务器
- 18.10.80.117
- 18.10.80.118
域名解析
- xlm-web.xlsuixing.com
执行策略
- 优先迁移静态资源
- 再搞域名解析
OPPO 加 channel id
private void initChannel(){
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
if (nm != null){
NotificationChannelGroup notificationChannelGroup = new NotificationChannelGroup("MyGroupId", "自定义通知组");
nm.createNotificationChannelGroup(notificationChannelGroup);
NotificationChannel notificationChannel = new NotificationChannel("MyChannelId", "自定义通知", NotificationManager.IMPORTANCE_HIGH);
notificationChannel.setGroup("MyGroupId");
notificationChannel.enableLights(true);
notificationChannel.enableVibration(true);
notificationChannel.setSound("android.resource:// 包名 /raw/ 铃声文件", null); // 设置自定义铃声
nm.createNotificationChannel(notificationChannel);
}
}
}