0

I have an app that uses Raygun. This is giving me problems when I try to update the com.android.support:design library. They works fine when I use com.android.support:design:22.2.0, but when I go up to com.android.support:design:23.+ I get a series of errors akin to this:

{Path}\raygun4android-1.3.0-sources.jar(main/java/com/mindscapehq/android/raygun4android/RaygunClient.java):15: error: package org.apache.http does not exist

I get that same error for api's 15-19.

KairisCharm
  • 1,363
  • 1
  • 13
  • 32

1 Answers1

0

You need to add the org.apache.http legacy jar to the applicaiton

android {
    useLibrary 'org.apache.http.legacy'
    ...
}
JBirdVegas
  • 10,855
  • 2
  • 44
  • 50