美文网首页
RN 安卓老项目报错

RN 安卓老项目报错

作者: Bana | 来源:发表于2021-03-30 22:55 被阅读0次

    Could not resolve com.squareup.okio:okio:{strictly 1.13.0}
    解决方案

    //git地址:https://github.com/nitaliano/react-native-mapbox-gl
    yarn add https://github.com/nitaliano/react-native-mapbox-gl#master
    react-native link
    
    configurations.all {
        resolutionStrategy {
            resolutionStrategy.eachDependency { details ->
                if (details.requested.group == 'androidx.core') {
                    details.useVersion "1.1.0"
                }
                if (details.requested.group == 'androidx.lifecycle') {
                    details.useVersion "2.0.0"
                }
                if (details.requested.group == 'androidx.versionedparcelable') {
                    details.useVersion "1.0.0"
                }
                if (details.requested.group == 'androidx.fragment') {
                    details.useVersion "1.0.0"
                }
                if (details.requested.group == 'androidx.appcompat') {
                    details.useVersion "1.0.1"
                }
    
            }
            force 'com.squareup.okhttp3:okhttp:3.9.1'
            force 'com.squareup.okio:okio:1.13.0'
        }
    
    }
    
    

    相关文章

      网友评论

          本文标题:RN 安卓老项目报错

          本文链接:https://www.haomeiwen.com/subject/gsunhltx.html