友盟官网讲解, Android 9.0上QQ分享报错
解决方案
1、确保App对应build.gradle脚本配置中 compileSdkVersion值为28。
compileSdkVersion 28
......
defaultConfig {
applicationId "com.umeng.soexample"
minSdkVersion 18
targetSdkVersion 28
2、在App清单文件AndroidManifest.xml application项中配置useLibrary项。明确引用org.apache.http.legacy库。
......
<application android:label="@string/app_name"
android:icon="@drawable/umeng_share_solid_icon"
android:name=".App">
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
<activity
......
3、sync gradle配置,clean工程,rebuild工程,重新安装App。已在运行Android 9.0的Google Pixel手机上实测,报错问题不再复现。