ERROR: Failed to resolve: com.github.tbruyelle:rxpermissions:0.10.2
问题: ERROR: Failed to resolve: com.github.tbruyelle:rxpermissions:0.10.2在使用RXPermissions的权限申请框架时,AS报了一个上述的错误,笔者搜索了一下,需要配置gradle环境,添加阿里镜像或者华为镜像:maven { url 'https://maven.aliyun.com/repository/public/'
·
问题: ERROR: Failed to resolve: com.github.tbruyelle:rxpermissions:0.10.2
在使用RXPermissions的权限申请框架时,AS报了一个上述的错误,笔者搜索了一下,需要配置gradle环境,添加阿里镜像或者华为镜像:
maven { url 'https://maven.aliyun.com/repository/public/' } maven { url 'https://maven.aliyun.com/repository/google/' } maven { url 'https://maven.aliyun.com/repository/jcenter' } maven { url 'https://jitpack.io' }
另外,该版本是适配RXJAVA 3的,因此必须添加相应的版本:
implementation 'io.reactivex.rxjava3:rxandroid:3.0.0' implementation 'io.reactivex.rxjava3:rxjava:3.0.4'
更多推荐
已为社区贡献2条内容
所有评论(0)