Android Question Problem with "Release"

catyinwong

Active Member
Licensed User
Longtime User
Does anyone know what the following errors mean?

B4A version: 6.50
Parsing code. (0.19s)
Compiling code. (0.39s)

ObfuscatorMap.txt file created in Objects folder.
Compiling layouts code. (0.06s)
Organizing libraries. (0.00s)
Generating R file. (0.05s)
Compiling generated Java code. Error
B4A line: 55
Log(Response.GetString(\
javac 1.8.0_121
src\catling\cba\andr\httputils2service.java:165: error: cannot access ParseException
anywheresoftware.b4a.keywords.Common.Log(_response.GetString("UTF8"));
^
class file for org.apache.http.ParseException not found
 

DonManfred

Expert
Licensed User
Longtime User
Starting from Android Api 23 the apache http lib does not exists anymore.

Update httputils(2) to okhttputils2
 
Upvote 0
Top