logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

No toolchains found in the NDK toolchains folder for ABI with prefix: arm-linux-androideabi

有时候跑项目报这个错误:No toolchains found in the NDK toolchains folder for ABI with prefix: arm-linux-androideabi。在build.gradle里面添加如下代码即可。

文章图片
#arm开发#linux#运维 +3
Android之Banner轮播图

1.添加网络权限和导入相关的依赖1).网络权限<uses-permission android:name="android.permission.INTERNET"/>2).依赖//banner依赖implementation 'com.youth.banner:banner:1.4.10'// 最新版本implementation 'com.github.bumptech.glide

Duplicate class android.support.v4.app.INotificationSideChannel found in modules core-1.5.0-run

到别的项目里面的库的时候运行报这个错,网上搜了一下解决方法

#android#android studio#gradle
android中清单文件加provider不能运行问题

一次,项目修改了compileSdkVersion之后,拍照就报错了,之后清单文件添加provider就不能运行了,app那里画❌解决办法:定义MineFileProvider继承 FileProvider然后把上面androidx.core.content.FileProvider修改为自定义得MineFileProvider再运行就可以编译通过了。...

#android#java#apache
shape圆角

<shape xmlns:android="http://schemas.android.com/apk/res/android"><cornersandroid:topLeftRadius="16dp" <!--上面左圆角的半径-->android:topRightRadius="16dp"<!--上面右圆角的半径-->android:bottomLef

到底了