Closed selway closed 4 years ago
我解决了,但是目前还不知道为什么会这样
原来写的是:
Bugly.init(getApplicationContext(), APP_ID, BuildConfig.DEBUG);
死活都报错。
解决方法
别用BuildConfig.DEBUG
,直接true
或false
或者定义的常量都行,
Bugly.init(getApplicationContext(), APP_ID, false);
这样就不报错了,OMG太坑了,浪费了好长时间。
希望可以帮到后面的同仁们。
我也是这个错误, 按你的改完仍然报这个错
W/BuglyThread-2: type=1400 audit(0.0:140): avc: denied { search } for name="power_supply" dev="sysfs" ino=11518 scontext=u:r:untrusted_app_25:s0:c512,c768 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0
W/System.err: java.lang.NullPointerException: Attempt to read from field 'com.tencent.bugly.proguard.bk com.tencent.bugly.beta.upgrade.BetaUploadStrategy.a' on a null object reference
W/System.err: at com.tencent.bugly.beta.upgrade.c.a(BUGLY:516)
好像是这个要设置为 true Beta.autoInit = true
我也是这个错误, 按你的改完仍然报这个错
W/BuglyThread-2: type=1400 audit(0.0:140): avc: denied { search } for name="power_supply" dev="sysfs" ino=11518 scontext=u:r:untrusted_app_25:s0:c512,c768 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0
W/System.err: java.lang.NullPointerException: Attempt to read from field 'com.tencent.bugly.proguard.bk com.tencent.bugly.beta.upgrade.BetaUploadStrategy.a' on a null object reference
W/System.err: at com.tencent.bugly.beta.upgrade.c.a(BUGLY:516)
我也是这个错误, 按你的改完仍然报这个错
W/BuglyThread-2: type=1400 audit(0.0:140): avc: denied { search } for name="power_supply" dev="sysfs" ino=11518 scontext=u:r:untrusted_app_25:s0:c512,c768 tcontext=u:object_r:sysfs_batteryinfo:s0 tclass=dir permissive=0
W/System.err: java.lang.NullPointerException: Attempt to read from field 'com.tencent.bugly.proguard.bk com.tencent.bugly.beta.upgrade.BetaUploadStrategy.a' on a null object reference
W/System.err: at com.tencent.bugly.beta.upgrade.c.a(BUGLY:516)
老哥你这边解决了吗 我试了几个方法都没有用
我也遇到了,可惜这个sdk真的资料太少。还混淆了,不好看
好像是这个要设置为 true Beta.autoInit = true
按照你的这个写,对了,在初始化后面就加上。MD浪费我一下午。也没找到问题
Beta.autoInit = true 加上也报错, 1年了, 还没解决这个bug吗?
您好: 您的邮件已收到,会尽快给您回复! 郭琦 (自动回复邮件)
我18年写的项目,非kotlin,正常检测更新,同样的代码搬到kotlin项目,同一个手机,也报这个空指针异常,以上方式都不能解决,我怀疑跟项目的编译和运行环境有关,暂时没找到证据
您好: 您的邮件已收到,会尽快给您回复! 郭琦 (自动回复邮件)
异常类型
app运行时异常。 bugly 内部类报错:Attempt to read from field 'com.tencent.bugly.proguard.bk com.tencent.bugly.beta.upgrade.BetaUploadStrategy.a' on a null object reference
手机系统版本
Android 7.1.2
版本
gradle版本
3.4.2
堆栈/日志
其它相关信息
初始化时传的
Context
不为null。