Skip to main content

Crash on Android P - Didn't find class "org.apache.http.ProtocolVersion" #949

use this

If your app is targeting API level 28 (Android 9.0) or above, you must include the following declaration within the <application> element of AndroidManifest.xml.
<uses-library
       android:name="org.apache.http.legacy"
  android:required="false" />
If your app is targeting a lower API level, this is handled for you.
Curiously this doesn't happen on the master branch yet, so it must be a side effect of newer Maps API version in the nav branch, or a combination with other Firebase or Play Services features there.


The error message "Didn't find class "org.apache.http.ProtocolVersion"" is related to the use of the Apache HTTP library, which is no longer supported in Android P (API level 28) and higher. The class org.apache.http.ProtocolVersion is a part of this library.

To fix this issue, you will need to remove the dependency on the Apache HTTP library and replace it with a more recent library that is supported on Android P and higher. One popular alternative is the OkHttp library.

Here are the steps you can take to replace the Apache HTTP library with OkHttp:

  1. Remove the dependency on the Apache HTTP library from your app's build.gradle file.

  2. Add the OkHttp library to your app's build.gradle file. You can do this by adding the following line to the dependencies section:

implementation 'com.squareup.okhttp3:okhttp:4.x.x'
  1. Replace all instances of org.apache.http with okhttp3 in your app's code.

  2. Rebuild and test your app to ensure that the app no longer crashes and that all network-related functionality still works as expected.

  3. It's also important to keep in mind that other libraries you're using may be dependent on Apache HTTP classes, so you may need to update those libraries as well.

    It is also recommended to use HttpUrlConnection provided by android framework as it is more optimized for android and it is recommended by google.

Popular posts from this blog

create MVVM Architecture Pattern for my android app

Here is an example of how you could implement the MVVM (Model-View-ViewModel) architecture pattern in an Android app using Java: Create a View class, for example MainActivity that extends AppCompatActivity and is responsible for handling user interactions and displaying data to the user. public class MainActivity extends AppCompatActivity { private ActivityMainBinding binding; private MainViewModel viewModel; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); binding = DataBindingUtil.setContentView(this, R.layout.activity_main); viewModel = new ViewModelProvider(this).get(MainViewModel.class); binding.setViewModel(viewModel); binding.setLifecycleOwner(this); } } } } Create a ViewModel class, for example MainViewModel that extends AndroidViewModel and is responsible for holding and processing the data for the View , as well as handling any business logicy code public cla...

how to send user location in background android code

  To send a user's location in the background in an Android application, you can use the FusedLocationProviderClient class to request location updates and the Service class to run a background service that can perform the location updates and send the data to your server or another destination. Here is an example of how to set up a background service that requests location updates every 5 minutes: Create a new service class that extends Service , for example LocationUpdateService . In the onCreate() method of the service, initialize the FusedLocationProviderClient and request location updates using the requestLocationUpdates() method. FusedLocationProviderClient fusedLocationClient; @Override public void onCreate() {     super.onCreate();     fusedLocationClient = LocationServices.getFusedLocationProviderClient(this);     fusedLocationClient.requestLocationUpdates(             getLocationRequest(),     ...

How to create google map with drag marker to get user location with auto correct location edit text ...

For drag and drop with user location You have to create a google map fragment activity below are the xml code of google map xml <? xml version ="1.0" encoding ="utf-8" ?> < androidx.constraintlayout.widget.ConstraintLayout xmlns: android ="http://schemas.android.com/apk/res/android" xmlns: app ="http://schemas.android.com/apk/res-auto" xmlns: tools ="http://schemas.android.com/tools" android :layout_width ="match_parent" android :layout_height ="match_parent" tools :context =".GetUserLocationActivity" > < fragment android :id ="@+id/mapuserloc" android :name ="com.google.android.gms.maps.SupportMapFragment" android :layout_width ="match_parent" android :layout_height ="522dp" app :layout_constraintEnd_toEndOf ="parent" app :layout_constraintStart_toStartOf ="p...