-
Notifications
You must be signed in to change notification settings - Fork 357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
java.lang.NoSuchMethodException #88
Comments
系统版本? |
Android 12 |
安装了用户证书,好像这个异常跟安卓版本没关系吧,要换jdk吗? |
W/.netbare.sampl: Accessing hidden method Lcom/android/org/conscrypt/Java8EngineWrapper;->setApplicationProtocols([Ljava/lang/String;)V (blocked, reflection, denied) |
setApplicationProtocols([Ljava/lang/String;)V (blocked, reflection, denied),系统隐藏API被禁止反射调用,Android 12没有办法绕过去。 |
正如置顶公告所说:这个库“依赖系统限制API的反射”无法适配未来的系统版本。 |
好的,谢谢您 |
请问一下 HttpCanary v9.2.8.1 为什么注入的时候不会出问题? |
疑惑。。HttpCanary可以在Android12上正常抓包https,netbare不可以 |
在netbare-core中的
com.github.megatronking.netbare.http.HttpSSLResponseCodec中的
enableJava8EngineWrapperAlpn()方法
Method setApplicationProtocolsMethod = mSSLEngine.getClass().getDeclaredMethod("setApplicationProtocols", String[].class)语句
javax.net.ssl.SSLEngine中并没有setApplicationProtocols
The text was updated successfully, but these errors were encountered: