Open josediegopassos opened 5 years ago
We are receiving the following exception: "Java.Lang.NoClassDefFoundError: Failed resolution of: Lorg/apache/http/RequestLine;"
This problem only occurs on Android 9.0 and apparently is occurring because "org.apache.http.legacy" has become obsolete.
Just add <uses-library android:name="org.apache.http.legacy" android:required="false" /> inside the Application Tag in your Androidmanifest.xml file.
<uses-library android:name="org.apache.http.legacy" android:required="false" />
We are receiving the following exception: "Java.Lang.NoClassDefFoundError: Failed resolution of: Lorg/apache/http/RequestLine;"
This problem only occurs on Android 9.0 and apparently is occurring because "org.apache.http.legacy" has become obsolete.