I have written an Android App for my Company, and as it runs well for me, there are some crash-reports with errors I never had myself. One I don't know how to fix is a java.lang.verifyError in a Service.
the line which is crashing is:
String post_request = ConnectionHelper.getTicketRequestJsonString(true, ticketIdsToDownload);
ConnectionHelper is a class containing only static functions returning Strings. What can I do to fix the problem?
Edit: if helpfull i'll post some Code while not thinking I'm running into "Security Problems"
public static String getTicketRequestJsonString(boolean details, List<String> ticketIds){
String ticketString = "tickets:[";
int count = ticketIds.size() - 1;
for (int i = 0; i <= count; i++){
String s = ticketIds.get(i);
ticketString += s
ticketString += i != count ? "," : "]";
}
return ticketString;
}