RN 安卓老项目报错

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 安卓老项目报错)