Google Maps crashing on Android Pie
Google map is not property supported android 9+. Use the following code in your manifest file. it will work.
<uses-library
android:name="org.apache.http.legacy"
android:required="false" />
This error occurs on Android 9.0.
Add the below code in the <application>
element of manifest
<uses-library
android:name="org.apache.http.legacy"
android:required="false" />
Refer to Specify requirement for Apache HTTP Legacy library docs.