更新weibo sdk(去掉so以适配Android 15的16K Page Size的版本)记录

1、修改模块的gradle

implementation 'io.github.sinaweibosdk:core:13.6.1@aar'

改为

implementation 'io.github.sinaweibosdk:core:13.10.4@aar'

同步、运行报错:

Didn't find class "androidx.core.content.FileProvider"

解决:据此提示判断weibo sdk使用了androidx;我的工程很懒,一般只更新业务代码,但既然要用weibo sdk,所以也必须把那些import android.support.改为使用androidx了

2、引入androidx

implementation 'androidx.core:core:1.13.1'

同步、运行报错:

... contains AndroidX dependencies, but the `android.useAndroidX` property is not enabled ...

解决:就是说还要显式声明一下用androidx, 在gradle.properties增加2行

android.useAndroidX=true
android.enableJetifier=true

同步、运行报错:

Invoke-customs are only supported starting with Android O (--min-api 26)

解决:意即 minSdkVersion 至少26,所以要修改各模块build.gradle里的minSdkVersion

同步、运行报错:

A failure occurred while executing com.android.build.gradle.internal.tasks.CheckAarMetadataWorkAction

解决:Build - clean 再重新运行,报错:

... is currently compiled against android-30.

      Recommended action: Update this project to use a newer compileSdk
      of at least 34, for example 34.

解决:修改各模块build.gradle里的compileSdkVersion的值,至少34

同步、运行报错:

... No static method metafactory ...

解决:在模块build.gradle的android {} 里增加

compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

同步、运行报错:

Didn't find class "android.support.v4.content.FileProvider"

解决:这个是manifest里有

android:name="android.support.v4.content.FileProvider"

需要改为

android:name="androidx.core.content.FileProvider"

之后就没什么错了。

3、补充

3-1、中途可能还有一些错懒得记录了,一般是java中import 语句例如

import android.support.v4.content.ContextCompat;

要转换为

import androidx.core.content.ContextCompat;

这只是举例,有很多句,有自动转换的菜单;我是手工改的。

3-2、有个webview的语句报错:

setAppCacheEnabled(BOOL),没这个方法了...

暂时注释掉,以后有空解决。

3-3、xml里写死的android.support控件要找一下改掉

例如

<android.support.v4.view.ViewPager ...

改为

<androidx.viewpager.widget.ViewPager ...

3-4、gradle里旧support语句替换

implementation 'com.android.support:support-v4:26.+'
implementation 'com.android.support:appcompat-v7:28.0.0'

替换为

implementation 'androidx.core:core:1.13.1'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))

第3句若不加会报错

相关推荐
ggs_and_ddu21 分钟前
Android--java实现手机亮度控制
android·java·智能手机
zhangphil6 小时前
Android绘图Path基于LinearGradient线性动画渐变,Kotlin(2)
android·kotlin
watl06 小时前
【Android】unzip aar删除冲突classes再zip
android·linux·运维
键盘上的蚂蚁-6 小时前
PHP爬虫类的并发与多线程处理技巧
android
喜欢猪猪7 小时前
Java技术专家视角解读:SQL优化与批处理在大数据处理中的应用及原理
android·python·adb
JasonYin~9 小时前
HarmonyOS NEXT 实战之元服务:静态案例效果---手机查看电量
android·华为·harmonyos
zhangphil9 小时前
Android adb查看某个进程的总线程数
android·adb
抛空9 小时前
Android14 - SystemServer进程的启动与工作流程分析
android
Gerry_Liang11 小时前
记一次 Android 高内存排查
android·性能优化·内存泄露·mat
天天打码13 小时前
ThinkPHP项目如何关闭runtime下Log日志文件记录
android·java·javascript