java.lang.ClassNotFoundException

74次阅读

共计 302 个字符,预计需要花费 1 分钟才能阅读完成。

今天在写 QQ 第三方登录的时候遇到了导致 app 崩溃的一个问题:
java.lang.ClassNotFoundException: Didn’t find class “org.apache.http.conn.scheme.SchemeRegistry”

解决方法:
在 manifests 包下的 AndroidManifest.xml 中添加如下代码
<application
<uses-library
android:name=”org.apache.http.legacy”
android:required=”false”/>
</application>

具体原由并不是很清楚,如果有人知道的话麻烦可以解释下原由,谢谢!!!

正文完
 0