作者: admin
问题描述:在部分机型上(华为FLA-AL10安卓9、荣耀LLD-AL30安卓9)无法分享图片,但是可以分享文字到微信。
在Vivo V1914A上可以分享图片和文字
sdk版本:
implementation 'com.umeng.umsdk:asms:1.2.2'// 必选
// 必选
implementation files('libs/umeng-common-9.4.7.jar')
implementation files('libs/umeng-share-core-7.1.7.jar')
implementation files('libs/umeng-sharetool-7.1.7.jar')
implementation files('libs/umeng-share-sms-7.1.7.jar')
implementation files('libs/umeng-share-wechat-full-7.1.7.jar')
调用代码:
UM.shareImage(mActivity, SHARE_MEDIA.WEIXIN, ImageUtil.view2Bitmap(shareView), 50, new UMShareListener() {
@Override
public void onStart(SHARE_MEDIA share_media) {
alertView.dismiss();
}
@Override
public void onResult(SHARE_MEDIA share_media) {
}
@Override
public void onError(SHARE_MEDIA share_media, Throwable throwable) {
}
@Override
public void onCancel(SHARE_MEDIA share_media) {
}
});
尝试解决方法:
打开了app所有权限,包括存储,通讯录,电话(设备信息)
查看文件管理下的umeng_cache是有对应jpg文件的
在分享的activity下添加以下代码也是无效的
//分享功能
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
UMShareAPI.get(this).onActivityResult(requestCode, resultCode, data);
}
WXEntryActivity 的代码:
package com.hotata.keyoolot.wxapi;
/**
* 使用微信分享或者登陆功能
*
* 在包名目录下创建wxapi文件夹,
* 新建一个名为WXEntryActivity的activity继承WXCallbackActivity。
* 这里注意一定是包名路径下,例如我的包名是com.umeng.soexample,则配置如下:
*
* 路径是com.umeng.socialize.weixin.view.WXCallbackActivity)
*/
import com.umeng.socialize.weixin.view.WXCallbackActivity;
/**
* 请将此文件复制到 开发app的包名.wxapi 文件夹中.
*/
public class WXEntryActivity extends WXCallbackActivity {
}
um分享工具类:
import android.app.Activity;
import android.app.Application;
import android.content.Intent;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageManager;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.text.TextUtils;
import android.util.DisplayMetrics;
import android.util.Log;
import android.util.TypedValue;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.TextView;
import com.umeng.analytics.MobclickAgent;
import com.umeng.commonsdk.UMConfigure;
import com.umeng.socialize.*;
import com.umeng.socialize.PlatformConfig;
import com.umeng.socialize.ShareAction;
import com.umeng.socialize.UMAuthListener;
import com.umeng.socialize.UMShareAPI;
import com.umeng.socialize.UMShareListener;
import com.umeng.socialize.UmengTool;
import com.umeng.socialize.bean.SHARE_MEDIA;
import com.umeng.socialize.media.UMImage;
import com.umeng.socialize.media.UMWeb;
import java.util.Map;
public class UM {
public static final String TAG = "UM";
private static Application sApplication;
/**
* 预初始化函数
*/
public static void preInit(Application application, boolean debug) {
sApplication = application;
try {
ApplicationInfo applicationInfo = sApplication.getPackageManager()
.getApplicationInfo(sApplication.getPackageName(), PackageManager.GET_META_DATA);
String umChannel = String.valueOf(applicationInfo.metaData.get("UMENG_CHANNEL"));
String umKey = String.valueOf(applicationInfo.metaData.get("UMENG_APPKEY"));
// SDK预初始化函数
UMConfigure.preInit(application, umKey, umChannel);
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
}
/**
* 请记得调用初始化方法
*/
public static void init(Application application, boolean debug) {
sApplication = application;
UMConfigure.setLogEnabled(debug);
UMShareAPI.get(sApplication);
initPlatformConfig();
/**
* 设置每次登录拉取确认界面
* */
UMShareConfig config = new UMShareConfig();
config.isNeedAuthOnGetUserInfo(true);
UMShareAPI.get(application).setShareConfig(config);
try {
ApplicationInfo applicationInfo = sApplication.getPackageManager()
.getApplicationInfo(sApplication.getPackageName(), PackageManager.GET_META_DATA);
String umChannel = String.valueOf(applicationInfo.metaData.get("UMENG_CHANNEL"));
String umKey = String.valueOf(applicationInfo.metaData.get("UMENG_APPKEY"));
UMConfigure.init(application, umKey, umChannel, UMConfigure.DEVICE_TYPE_PHONE, "" /*推送服务secret*/);
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
}
private static void initPlatformConfig() {
try {
ApplicationInfo applicationInfo = sApplication.getPackageManager()
.getApplicationInfo(sApplication.getPackageName(), PackageManager.GET_META_DATA);
// String qqId = String.valueOf(applicationInfo.metaData.get("QQ_ID"));
// String qqKey = String.valueOf(applicationInfo.metaData.get("QQ_KEY"));
String wxId = String.valueOf(applicationInfo.metaData.get("WX_ID"));
String wxKey = String.valueOf(applicationInfo.metaData.get("WX_KEY"));
PlatformConfig.setWeixin(wxId, wxKey);
PlatformConfig.setWXFileProvider("com.hotata.keyoolot.fileprovider");
// PlatformConfig.setQQZone(qqId, qqKey);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* https://developer.umeng.com/docs/66632/detail/66849?um_channel=sdk
*/
public static void onActivityResult(int requestCode, int resultCode, Intent data) {
UMShareAPI.get(sApplication).onActivityResult(requestCode, resultCode, data);
}
public static void onDestroy() {
UMShareAPI.get(sApplication).release();
}
/**
* 判断客户端是否安装
*/
public static boolean isInstall(Activity activity, SHARE_MEDIA shareMedia) {
return UMShareAPI.get(sApplication).isInstall(activity, shareMedia);
}
/**
* 删除授权
*/
public static void deleteAuth(Activity activity, SHARE_MEDIA platform, UMAuthListener listener) {
UMShareAPI.get(sApplication).deleteOauth(activity, platform, listener);
}
/**
* 授权验证
*/
public static void authVerify(Activity activity, SHARE_MEDIA platform, UMAuthListener listener) {
UMShareAPI.get(sApplication).doOauthVerify(activity, platform, listener);
}
/**
* 返回是否授权
*/
public static boolean isAuthorize(Activity activity, SHARE_MEDIA platform) {
return UMShareAPI.get(sApplication).isAuthorize(activity, platform);
}
/**
* 获取平台信息
*
* 如果未授权, 会拉取授权界面, 再返回数据
*
* 如果已授权, 会直接返回数据
*/
public static void getPlatformInfo(Activity activity, SHARE_MEDIA platform, UMAuthListener listener) {
UMShareAPI.get(sApplication).getPlatformInfo(activity, platform, listener);
}
/**
* 分享纯文本
*
*
注意
Q 不能分享纯文本
*/
public static void shareText(Activity activity, SHARE_MEDIA shareMedia,
String shareText, UMShareListener listener) {
if (shareMedia == SHARE_MEDIA.QQ) {
//将文本转成图片
DisplayMetrics metrics = activity.getResources().getDisplayMetrics();
int padding = (int) (metrics.density * 4);
FrameLayout frameLayout = new FrameLayout(activity);
frameLayout.setBackgroundColor(Color.WHITE);
TextView textView = new TextView(activity);
textView.setText(shareText);
textView.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 8);
frameLayout.setPadding(padding, padding, padding, padding);
frameLayout.addView(textView, new ViewGroup.LayoutParams(-2, -2));
frameLayout.measure(View.MeasureSpec.makeMeasureSpec(metrics.widthPixels, View.MeasureSpec.AT_MOST),
View.MeasureSpec.makeMeasureSpec(metrics.heightPixels, View.MeasureSpec.AT_MOST));
frameLayout.layout(0, 0, frameLayout.getMeasuredWidth(), frameLayout.getMeasuredHeight());
Bitmap bitmap = Bitmap.createBitmap(frameLayout.getMeasuredWidth(), frameLayout.getMeasuredHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
frameLayout.draw(canvas);
shareImage(activity, shareMedia, bitmap, -1, listener);
} else {
action(activity, shareMedia, listener)
.withText(shareText)
.share();
}
}
/**
* 分享图片
*
* 分享到微信必须要设置缩略图
*/
public static void shareImage(Activity activity, SHARE_MEDIA shareMedia,
String imageUrl, int thumbRes,
UMShareListener listener) {
UMImage umImage = new UMImage(activity, imageUrl);
// if (thumbRes != -1) {
// UMImage umThumb = new UMImage(activity, thumbRes);
// umImage.setThumb(umThumb);
// }
action(activity, shareMedia, listener)
.withMedia(umImage)
.share();
}
/**
* 分享Bitmap对象
*/
public static void shareImage(Activity activity, SHARE_MEDIA shareMedia,
Bitmap bitmap, int thumbRes,
UMShareListener listener) {
UMImage umImage = new UMImage(activity, bitmap);
// if (thumbRes != -1) {
// UMImage umThumb = new UMImage(activity, thumbRes);
// umImage.setThumb(umThumb);
// }
action(activity, shareMedia, listener)
.withMedia(umImage)
.share();
}
private static ShareAction action(Activity activity, SHARE_MEDIA shareMedia,
UMShareListener listener) {
return new ShareAction(activity)
.setPlatform(shareMedia)
.setCallback(listener);
}
/**
* 分享图文
*/
public static void shareImageText(Activity activity, SHARE_MEDIA shareMedia,
String imageUrl, int thumbRes,
String text,
UMShareListener listener) {
UMImage umImage = new UMImage(activity, imageUrl);
// if (thumbRes != -1) {
// UMImage umThumb = new UMImage(activity, thumbRes);
// umImage.setThumb(umThumb);
// }
action(activity, shareMedia, listener)
.withMedia(umImage)
.withText(text)
.share();
}
/**
* 分享链接
*/
public static void shareWeb(Activity activity, SHARE_MEDIA shareMedia,
String url, int thumbRes,
String title, String des,
String text,
UMShareListener listener) {
UMWeb web = new UMWeb(url);
if (!TextUtils.isEmpty(title)) {
web.setTitle(title);//标题
}
//缩略图
if (thumbRes != -1) {
UMImage umThumb = new UMImage(activity, thumbRes);
web.setThumb(umThumb);
}
if (!TextUtils.isEmpty(des)) {
web.setDescription(des);//描述
}
ShareAction shareAction = action(activity, shareMedia, listener)
.withMedia(web);
if (!TextUtils.isEmpty(text)) {
shareAction.withText(text);
}
shareAction.share();
}
public static void checkQQ(Activity activity) {
UmengTool.checkQQ(activity);
}
public static void checkWX(Activity activity) {
UmengTool.checkWx(activity);
}
public static class ShareListener implements UMShareListener {
@Override
public void onStart(SHARE_MEDIA shareMedia) {
v("onStart");
}
@Override
public void onResult(SHARE_MEDIA shareMedia) {
v("onResult");
}
@Override
public void onError(SHARE_MEDIA shareMedia, Throwable throwable) {
v("onError");
}
@Override
public void onCancel(SHARE_MEDIA shareMedia) {
v("onCancel");
}
}
public static class AuthListener implements UMAuthListener {
@Override
public void onStart(SHARE_MEDIA shareMedia) {
v("onStart");
}
@Override
public void onComplete(SHARE_MEDIA shareMedia, int i, Map
map) {
v("onComplete");
UMInfoBean umInfoBean = new UMInfoBean();
if (map != null) {
umInfoBean.setUid(map.get("uid"));
umInfoBean.setName(map.get("name"));
umInfoBean.setIconurl(map.get("iconurl"));
umInfoBean.setGender(map.get("gender"));
StringBuilder builder = new StringBuilder("Auth onComplete");
for (Map.Entry entry : map.entrySet()) {
builder.append("\n");
builder.append(entry.getKey());
builder.append(":");
builder.append(entry.getValue());
}
v(builder.toString());
}
onResult(map, umInfoBean, null, false);
}
@Override
public void onError(SHARE_MEDIA shareMedia, int i, Throwable throwable) {
v("onError");
onResult(null, null, throwable, false);
}
@Override
public void onCancel(SHARE_MEDIA shareMedia, int i) {
v("onCancel");
onResult(null, null, null, false);
}
public void onResult(Map map,
UMInfoBean umInfoBean /*成功时有值*/,
Throwable throwable /*错误时有值*/,
boolean isCancel) {
}
}
private static void v(String text) {
if (BuildConfig.DEBUG) {
Log.v(TAG, text);
}
}
}
以下是闪退的日志:
--------- beginning of main
2022-02-24 11:05:41.502 1299-1469/? I/TrafficMonitor: update:rxPkts:5,txPkts:3,rxBytes:666,txBytes:286
2022-02-24 11:05:41.502 1299-1469/? I/TrafficMonitor: start expired. level:-1
2022-02-24 11:05:41.502 1299-1469/? I/TrafficMonitor: gettimer:interval=2000
2022-02-24 11:05:41.616 636-636/? I/aptouch_daemon: filter_touch_detect, down, in: 1, out: 1
2022-02-24 11:05:41.723 636-636/? I/aptouch_daemon: filter_touch_detect, all_touch_up
2022-02-24 11:05:41.730 12437-12437/com.hotata.keyoolot V/AudioManager: playSoundEffect effectType: 0
2022-02-24 11:05:41.731 12437-12437/com.hotata.keyoolot V/AudioManager: querySoundEffectsEnabled...
2022-02-24 11:05:41.737 1299-14999/? I/PackageManager: getInstalledPackages cost 3 ms, flags: 786432, userId: 0, callingUid: 10158, callingPid: 12437
2022-02-24 11:05:41.921 12437-12437/com.hotata.keyoolot E/UMLog_Social: ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.921 12437-12437/com.hotata.keyoolot E/UMLog_Social: │ [SC20008]您本次打包的签名:6ea43b2b7b3a3953f468926cdfac15f9
2022-02-24 11:05:41.921 12437-12437/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:41.921 12437-12437/com.hotata.keyoolot E/UMLog_Social: │ 包名:com.hotata.keyoolot
2022-02-24 11:05:41.921 12437-12437/com.hotata.keyoolot E/UMLog_Social: └────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.922 12437-12437/com.hotata.keyoolot E/UMLog_Social: ┌───────────────────问题─────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: │ 为什么微信没有回调?
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: ├───────────────────解决方案─────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: │ https://developer.umeng.com/docs/66632/detail/66791?um_channel=sdk
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: └────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: ┌───────────────────问题─────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: │ 为什么微信朋友圈链接不显示描述文字?
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: ├───────────────────解决方案─────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: │ https://developer.umeng.com/docs/66632/detail/66797?um_channel=sdk
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: └────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: ┌───────────────────问题─────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: │ 为什么微信提示40125/invalid APPsecret?
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: ├───────────────────解决方案─────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: │ https://developer.umeng.com/docs/66632/detail/66802?um_channel=sdk
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: └────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: ┌───────────────────问题─────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: │ 为什么微信分享提示hit push hold?
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: ├───────────────────解决方案─────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: │ https://developer.umeng.com/docs/66632/detail/66795?um_channel=sdk
2022-02-24 11:05:41.923 12437-12437/com.hotata.keyoolot E/UMLog_Social: └────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.928 12437-13109/com.hotata.keyoolot E/UMLog_Social: API版本号:7.1.7
2022-02-24 11:05:41.987 714-3000/? E/LOGSERVER_UTILS: [Erecovery]readEvent: eRecEventManager readEvent 0
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot I/UMLog_Social: ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot I/UMLog_Social: │ 以下为分享的内容:
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot I/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot I/UMLog_Social: │ 分享平台:WEIXIN
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot I/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot I/UMLog_Social: │ 分享类型:2
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot I/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot I/UMLog_Social: │ 分享文本:
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot I/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot I/UMLog_Social: │ 本地图片:84568
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot I/UMLog_Social: └────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.994 12437-13109/com.hotata.keyoolot E/UMLog_Social: xxxxxx UMSSOHandler 7.1.7
2022-02-24 11:05:41.995 12437-13109/com.hotata.keyoolot I/UMLog_Social: ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.995 12437-13109/com.hotata.keyoolot I/UMLog_Social: │ 分享平台相关信息:
2022-02-24 11:05:41.995 12437-13109/com.hotata.keyoolot I/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:41.995 12437-13109/com.hotata.keyoolot I/UMLog_Social: │ 平台(wxsession):7.1.7
2022-02-24 11:05:41.995 12437-13109/com.hotata.keyoolot I/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:41.995 12437-13109/com.hotata.keyoolot I/UMLog_Social: │ handler id:com.umeng.socialize.handler.UMWXHandler@40584ae
2022-02-24 11:05:41.995 12437-13109/com.hotata.keyoolot I/UMLog_Social: └────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:41.999 12437-13109/com.hotata.keyoolot D/MicroMsg.PaySdk.WXFactory: createWXAPI, appId = wxc7490ba8e5ac1f3c, checkSignature = false
2022-02-24 11:05:42.000 12437-13109/com.hotata.keyoolot D/MicroMsg.PaySdk.WXFactory: createWXAPI, appId = wxc7490ba8e5ac1f3c, checkSignature = false, launchMode = 2
2022-02-24 11:05:42.008 12437-13109/com.hotata.keyoolot D/MicroMsg.SDK.WXApiImplV10: , appId = wxc7490ba8e5ac1f3c, checkSignature = false, launchMode = 2
2022-02-24 11:05:42.009 12437-13109/com.hotata.keyoolot D/MicroMsg.SDK.WXMsgImplComm: ignore wechat app signature validation
2022-02-24 11:05:42.009 12437-13109/com.hotata.keyoolot D/MicroMsg.SDK.WXApiImplV10: registerApp, appId = wxc7490ba8e5ac1f3c
2022-02-24 11:05:42.009 12437-13109/com.hotata.keyoolot D/MicroMsg.SDK.WXApiImplV10: registerApp, appId = wxc7490ba8e5ac1f3c
2022-02-24 11:05:42.009 12437-13109/com.hotata.keyoolot D/MicroMsg.SDK.WXApiImplV10: register app com.hotata.keyoolot
2022-02-24 11:05:42.013 12437-13109/com.hotata.keyoolot D/MicroMsg.SDK.MMessage: send mm message, intent=Intent { act=com.tencent.mm.plugin.openapi.Intent.ACTION_HANDLE_APP_REGISTER (has extras) }, perm=com.tencent.mm.permission.MM_MESSAGE
2022-02-24 11:05:42.016 12437-13109/com.hotata.keyoolot D/MicroMsg.SDK.WXMsgImplComm: ignore wechat app signature validation
2022-02-24 11:05:42.028 1299-1310/? V/BroadcastQueue: Finished with ordered broadcast BroadcastRecord{5dfaa4b u0 com.tencent.mm.plugin.openapi.Intent.ACTION_HANDLE_APP_REGISTER}
2022-02-24 11:05:42.047 602-602/? E/WifiHAL: enter wifi_get_link_stats
2022-02-24 11:05:42.054 1299-1470/? E/WificondControl: Noise: 0, Snr: -1, Chload: -1
2022-02-24 11:05:42.057 1299-1470/? D/WifiScoreReport: Score = 60, wifiConnectivityManagerEnabled = false, lowScoreCount = 0
2022-02-24 11:05:42.060 1299-14999/? V/ActivityManager: Successfully start provider ContentProviderRecord{e3f1593 u0 com.tencent.mm/.plugin.base.stub.MMPluginProvider} launchingApp=null caller pid= 12437
2022-02-24 11:05:42.063 1299-1467/? I/NetworkPolicy: updateRuleForRestrictBackgroundUL(10159): isForeground=true, isBlacklisted=false, isWhitelisted=true, isRestrictedByAdmin=false, oldRule=0 (NONE), newRule=1 (ALLOW_METERED), newUidRules=1 (ALLOW_METERED), oldUidRules=0 (NONE), mRestrictBackground=false
2022-02-24 11:05:42.082 12437-13109/com.hotata.keyoolot D/MicroMsg.SDK.WXApiImplV10: wxSdkVersion = 671093731
2022-02-24 11:05:42.089 12437-13111/com.hotata.keyoolot I/UMLog_Social: [SN10003]由于权限问题,没有获取到mac
2022-02-24 11:05:42.097 557-625/? I/PreDnsController: canPreDnsQuery,persist.sys.predns is false!
2022-02-24 11:05:42.130 12437-12437/com.hotata.keyoolot I/ViewRootImpl: jank_removeInvalidNode all the node in jank list is out of time
2022-02-24 11:05:42.130 1299-1317/? D/ZrHung.AppEyeTransparentWindow: handleMessage CHECK_TRANS_WINDOW_ERROR_MSG
2022-02-24 11:05:42.131 1299-1467/? I/NetworkPolicy: updateRuleForRestrictBackgroundUL(10159): isForeground=false, isBlacklisted=false, isWhitelisted=true, isRestrictedByAdmin=false, oldRule=1 (ALLOW_METERED), newRule=0 (NONE), newUidRules=0 (NONE), oldUidRules=1 (ALLOW_METERED), mRestrictBackground=false
2022-02-24 11:05:42.250 557-625/? I/PreDnsController: canPreDnsQuery,persist.sys.predns is false!
2022-02-24 11:05:42.253 12437-12815/com.hotata.keyoolot E/UMLog_Social: body is null
2022-02-24 11:05:42.259 12437-12437/com.hotata.keyoolot W/Thread-32: type=1400 audit(0.0:12461): avc: granted { create } for name="4c7ff013b85db94e65d271ee0cc436bc.jpg" scontext=u:r:untrusted_app:s0:c158,c256,c512,c768 tcontext=u
bject_r:sdcardfs:s0:c158,c256,c512,c768 tclass=file
2022-02-24 11:05:42.293 1299-14999/? V/BroadcastQueue: Finished with ordered broadcast BroadcastRecord{5d5a2e6 u0 null}
2022-02-24 11:05:42.301 1299-14999/? V/BroadcastQueue: Finished with ordered broadcast BroadcastRecord{4ff3c7d u0 null}
2022-02-24 11:05:42.350 12437-13111/com.hotata.keyoolot I/UMLog_Social: [SN10003]由于权限问题,没有获取到mac
2022-02-24 11:05:42.369 12437-12437/com.hotata.keyoolot W/Thread-32: type=1400 audit(0.0:12462): avc: granted { create } for name="fce0a6943d23c2f5b6f2ef91d23c3dd2.jpg" scontext=u:r:untrusted_app:s0:c158,c256,c512,c768 tcontext=u
bject_r:sdcardfs:s0:c158,c256,c512,c768 tclass=file
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ 错误信息如下:
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ 错误类型:Failed to find configured root that contains /storage/emulated/0/umeng_cache/fce0a6943d23c2f5b6f2ef91d23c3dd2.jpg
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at androidx.core.content.FileProvider$SimplePathStrategy.getUriForFile(FileProvider.java:744)
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at androidx.core.content.FileProvider.getUriForFile(FileProvider.java:418)
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.media.WeiXinShareContent.getFileUri(WeiXinShareContent.java:248)
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.media.WeiXinShareContent.buildImageParamsWithFileProvider(WeiXinShareContent.java:230)
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.media.WeiXinShareContent.getWxMediaMessage(WeiXinShareContent.java:48)
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.handler.UMWXHandler.shareTo(UMWXHandler.java:688)
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.handler.UMWXHandler.share(UMWXHandler.java:629)
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.a.a.a(SocialRouter.java:770)
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.UMShareAPI$5.a(UMShareAPI.java:318)
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.UMShareAPI$5.doInBackground(UMShareAPI.java:309)
2022-02-24 11:05:42.386 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.387 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.common.QueuedWork$UMAsyncTask$1.run(QueuedWork.java:136)
2022-02-24 11:05:42.387 12437-13109/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.387 12437-13109/com.hotata.keyoolot E/UMLog_Social: │ at java.lang.Thread.run(Thread.java:784)
2022-02-24 11:05:42.387 12437-13109/com.hotata.keyoolot E/UMLog_Social: └────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:42.541 13003-13041/com.hotata.keyoolot I/tnet-jni: 2418 - [SpdySessionCallBack.getSSLMeta] - org.android.spdy.SpdySession@183048e
2022-02-24 11:05:42.542 1299-1470/? E/WificondControl: Noise: 0, Snr: -1, Chload: -1
2022-02-24 11:05:42.545 13003-13046/com.hotata.keyoolot I/tnet-jni: 2423 - create new session: :443
2022-02-24 11:05:42.549 1299-1540/? D/HuaweiWifiWatchdogStateMachine: high data flow: protection_counter = 0, not_detect_counter = 12
2022-02-24 11:05:42.549 1299-1540/? D/HuaweiWifiWatchdogStateMachine: high data flow scenario: 0 --> 0 rx bytes =354KB
2022-02-24 11:05:42.549 1299-1540/? I/HuaweiWifiWatchdogStateMachine: POta txb txg rxg:0, 12, 0. Lr =0% Totpkt=12
2022-02-24 11:05:42.549 1299-13117/? I/HwUidTcpMonitor: TcpStatisticsRun run
2022-02-24 11:05:42.549 1299-1469/? D/WiFi_PRO: MSG_RETURN_AP_CURRY_RSSI rssi = -29
2022-02-24 11:05:42.549 1299-1469/? I/QosMonitor: queryRtt: rtt_type = 3
2022-02-24 11:05:42.550 1299-1469/? I/QosMonitor: postEventFromNative: msg=100,arg1=4,arg2=10
2022-02-24 11:05:42.550 1299-13117/? D/HwWifiConnectivityMonitor: ENTER: notifyTopUidTcpInfo, tx = 40, rx = 31, reTx = 0, uid = 10158, tr = 0.0
2022-02-24 11:05:42.550 1299-13117/? D/HwWifiConnectivityMonitor: ENTER: notifyTopUidTcpInfo, rtt = 1024, rttPkts = 20, aveRtt = 51.2, app = com.hotata.keyoolot
2022-02-24 11:05:42.550 1299-1469/? I/QosMonitor: postEventFromNative: msg=100,arg1=0,arg2=10
2022-02-24 11:05:42.550 1299-13117/? D/HwUidTcpMonitor: parseWlanUidTcpStatistics lastUidTcpStatInfo = [ mUid = 10158 mPacketName = com.hotata.keyoolot mSendSegs = 1903 mResendSegs = 35 mRcvSegs = 1908 ]
2022-02-24 11:05:42.550 1299-1469/? I/MQoS: rtt=510,tcp_tx_pkts=271623,tcp_rx_pkts=391210
2022-02-24 11:05:42.550 1299-1525/? D/HwWifiConnectivityMonitor: handleTopUidInternetStatusChanged, uid = 10158, status = 0
2022-02-24 11:05:42.550 1299-1469/? I/QosMonitor: resetRtt: rtt_type = 3
2022-02-24 11:05:42.551 1299-1540/? I/HuaweiWifiWatchdogStateMachine: PTcp RTT:510, rtt pkt=20, tcp_rx=31, tcp_tx=41, tcp_reTran=0, rtRate=0
2022-02-24 11:05:42.554 1299-4752/? I/MQoS: QOS_level:0(0),wifi-link;SIM error;use level-0
2022-02-24 11:05:42.554 1299-4752/? I/MQoS: skip-low-Level:0(0),wifi-link;SIM error;use level-0
2022-02-24 11:05:42.678 13003-13041/com.hotata.keyoolot I/tnet-jni: 2418 - [spdySessionFailedError] -
2022-02-24 11:05:42.678 13003-13041/com.hotata.keyoolot I/tnet-jni: 2418 - [SpdySessionCallBack.spdySessionFailedError] - org.android.spdy.SpdySession@183048e
2022-02-24 11:05:42.678 13003-13041/com.hotata.keyoolot D/tnet-jni: 2418 - [SpdySession.cleanUp] -
2022-02-24 11:05:42.680 1299-1841/? W/HwAlarmManagerService: isContainsAppUidInWorksource-->happend NameNotFoundException
2022-02-24 11:05:42.680 1299-1841/? I/chatty: uid=1000(system) Binder:1299_7 identical 1 line
2022-02-24 11:05:42.680 1299-1841/? W/HwAlarmManagerService: isContainsAppUidInWorksource-->happend NameNotFoundException
2022-02-24 11:05:42.681 1299-1841/? I/AlarmManager: adjustDeliveryTimeBasedOnStandbyBucketLocked alarm:Alarm{d4aefad type 0 when 1645671114317 PendingIntent{f1104c4: PendingIntentRecord{9d7bbbe com.sigma_rt.totalcontrol broadcastIntent}}com.sigma_rt.totalcontrol}, standbyBucket:40, minElapsed:168669413
2022-02-24 11:05:42.682 1299-1841/? I/HwAlarmManagerService: hwSetAlarm listenerTag: *job.delay*
2022-02-24 11:05:42.683 1299-1841/? I/JobScheduler.Time: mNextDelayExpiredElapsedMillis: 162831274
2022-02-24 11:05:42.683 1299-1841/? W/HwAlarmManagerService: isContainsAppUidInWorksource-->happend NameNotFoundException
2022-02-24 11:05:42.683 1299-1841/? I/chatty: uid=1000(system) Binder:1299_7 identical 1 line
2022-02-24 11:05:42.683 1299-1841/? W/HwAlarmManagerService: isContainsAppUidInWorksource-->happend NameNotFoundException
2022-02-24 11:05:42.684 1299-1841/? I/AlarmManager: adjustDeliveryTimeBasedOnStandbyBucketLocked alarm:Alarm{d4aefad type 0 when 1645671114317 PendingIntent{f1104c4: PendingIntentRecord{9d7bbbe com.sigma_rt.totalcontrol broadcastIntent}}com.sigma_rt.totalcontrol}, standbyBucket:40, minElapsed:168669413
2022-02-24 11:05:42.685 1299-1841/? I/HwAlarmManagerService: hwSetAlarm listenerTag: *job.deadline*
2022-02-24 11:05:42.686 1299-1841/? I/JobScheduler.Time: mNextJobExpiredElapsedMillis: 163131274
2022-02-24 11:05:42.686 1299-1841/? W/HwAlarmManagerService: isContainsAppUidInWorksource-->happend NameNotFoundException
2022-02-24 11:05:42.686 1299-1841/? I/chatty: uid=1000(system) Binder:1299_7 identical 1 line
2022-02-24 11:05:42.686 1299-1841/? W/HwAlarmManagerService: isContainsAppUidInWorksource-->happend NameNotFoundException
2022-02-24 11:05:42.687 1299-1841/? I/AlarmManager: adjustDeliveryTimeBasedOnStandbyBucketLocked alarm:Alarm{d4aefad type 0 when 1645671114317 PendingIntent{f1104c4: PendingIntentRecord{9d7bbbe com.sigma_rt.totalcontrol broadcastIntent}}com.sigma_rt.totalcontrol}, standbyBucket:40, minElapsed:168669413
2022-02-24 11:05:42.689 1299-1841/? I/HwAlarmManagerService: hwSetAlarm listenerTag: *job.delay*
2022-02-24 11:05:42.689 1299-1841/? I/JobScheduler.Time: mNextDelayExpiredElapsedMillis: 162638972
2022-02-24 11:05:42.689 1299-1841/? W/HwAlarmManagerService: isContainsAppUidInWorksource-->happend NameNotFoundException
2022-02-24 11:05:42.689 1299-1841/? I/chatty: uid=1000(system) Binder:1299_7 identical 1 line
2022-02-24 11:05:42.689 1299-1841/? W/HwAlarmManagerService: isContainsAppUidInWorksource-->happend NameNotFoundException
2022-02-24 11:05:42.690 1299-1841/? I/AlarmManager: adjustDeliveryTimeBasedOnStandbyBucketLocked alarm:Alarm{d4aefad type 0 when 1645671114317 PendingIntent{f1104c4: PendingIntentRecord{9d7bbbe com.sigma_rt.totalcontrol broadcastIntent}}com.sigma_rt.totalcontrol}, standbyBucket:40, minElapsed:168669413
2022-02-24 11:05:42.692 1299-1841/? I/HwAlarmManagerService: hwSetAlarm listenerTag: *job.deadline*
2022-02-24 11:05:42.692 1299-1841/? I/JobScheduler.Time: mNextJobExpiredElapsedMillis: 162638972
2022-02-24 11:05:42.695 13003-13041/com.hotata.keyoolot D/tnet-jni: 2418 - [SpdySession.clearAllStreamCb] -
2022-02-24 11:05:42.695 13003-13041/com.hotata.keyoolot D/tnet-jni: 2418 - [SpdySession.cleanUp] -
2022-02-24 11:05:42.927 12437-13111/com.hotata.keyoolot E/UMLog_Social: ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:42.927 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ [SN10000]工具类内的错误,不影响用户使用
2022-02-24 11:05:42.927 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.927 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ 错误类型:closed
2022-02-24 11:05:42.927 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.927 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.android.okhttp.okio.RealBufferedSource$1.read(RealBufferedSource.java:367)
2022-02-24 11:05:42.927 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.927 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:288)
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:351)
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:180)
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.io.InputStreamReader.read(InputStreamReader.java:184)
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.io.BufferedReader.fill(BufferedReader.java:172)
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.io.BufferedReader.readLine(BufferedReader.java:335)
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.io.BufferedReader.readLine(BufferedReader.java:400)
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.utils.UClient.convertStreamToString(UClient.java:458)
2022-02-24 11:05:42.928 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.utils.UClient.parseResult(UClient.java:401)
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.utils.UClient.httpPostRequest(UClient.java:170)
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.utils.UClient.execute(UClient.java:69)
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.base.SocializeClient.execute(SocializeClient.java:35)
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.analytics.SocialAnalytics$1.run(SocialAnalytics.java:58)
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.util.concurrent.ThreadPoolExecutor.processTask(ThreadPoolExecutor.java:1187)
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.929 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
2022-02-24 11:05:42.930 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.930 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.lang.Thread.run(Thread.java:784)
2022-02-24 11:05:42.930 12437-13111/com.hotata.keyoolot E/UMLog_Social: └────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:42.932 12437-13111/com.hotata.keyoolot E/UMLog_Social: ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:42.932 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ [SN10000]返回字符串不是json,可能是由于服务器不通造成
2022-02-24 11:05:42.932 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.932 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ 错误类型:Attempt to invoke virtual method 'int java.lang.String.length()' on a null object reference
2022-02-24 11:05:42.932 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.932 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at org.json.JSONTokener.nextCleanInternal(JSONTokener.java:116)
2022-02-24 11:05:42.932 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.932 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at org.json.JSONTokener.nextValue(JSONTokener.java:94)
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at org.json.JSONObject.(JSONObject.java:159)
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at org.json.JSONObject.(JSONObject.java:176)
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.utils.UClient.parseResult(UClient.java:404)
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.utils.UClient.httpPostRequest(UClient.java:170)
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.utils.UClient.execute(UClient.java:69)
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.base.SocializeClient.execute(SocializeClient.java:35)
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.analytics.SocialAnalytics$1.run(SocialAnalytics.java:58)
2022-02-24 11:05:42.933 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.934 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.util.concurrent.ThreadPoolExecutor.processTask(ThreadPoolExecutor.java:1187)
2022-02-24 11:05:42.934 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.934 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
2022-02-24 11:05:42.934 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.934 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
2022-02-24 11:05:42.934 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.934 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.lang.Thread.run(Thread.java:784)
2022-02-24 11:05:42.934 12437-13111/com.hotata.keyoolot E/UMLog_Social: └────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:42.936 12437-13111/com.hotata.keyoolot E/UMLog_Social: ┌────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:42.936 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ [SN10000]构建response出错,不影响用户使用,但需要查明原因
2022-02-24 11:05:42.936 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.936 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ 错误类型:Attempt to invoke virtual method 'int java.lang.String.length()' on a null object reference
2022-02-24 11:05:42.936 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.936 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at org.json.JSONTokener.nextCleanInternal(JSONTokener.java:116)
2022-02-24 11:05:42.936 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.936 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at org.json.JSONTokener.nextValue(JSONTokener.java:94)
2022-02-24 11:05:42.936 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.937 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at org.json.JSONObject.(JSONObject.java:159)
2022-02-24 11:05:42.937 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.937 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at org.json.JSONObject.(JSONObject.java:176)
2022-02-24 11:05:42.937 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.937 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.utils.UClient.decryptData(UClient.java:480)
2022-02-24 11:05:42.937 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.937 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.utils.UClient.parseResult(UClient.java:407)
2022-02-24 11:05:42.937 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.937 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.utils.UClient.httpPostRequest(UClient.java:170)
2022-02-24 11:05:42.937 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.937 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.utils.UClient.execute(UClient.java:69)
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.base.SocializeClient.execute(SocializeClient.java:35)
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at com.umeng.socialize.net.analytics.SocialAnalytics$1.run(SocialAnalytics.java:58)
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.util.concurrent.ThreadPoolExecutor.processTask(ThreadPoolExecutor.java:1187)
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1152)
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:641)
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: ├┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄┄
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: │ at java.lang.Thread.run(Thread.java:784)
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: └────────────────────────────────────────────────────────────────────────────────────────────────────────────────
2022-02-24 11:05:42.938 12437-13111/com.hotata.keyoolot E/UMLog_Social: