react-native-device-info集成遇到的坑
在集成react-native-device-info的时候遇到一个坑,找了好久才找不出来,这个组件按照步骤来iOS没啥问题,安卓就有问题了。
Error:Could not find common.jar (android.arch.core:common:1.0.0). Searched in the following locations: https://jcenter.bintray.com/android/arch/core/common/1.0.0/common-1.0.0.jar
解决方法:
在android/build.gradle里面加入一行代码,这样就完美解决了
maven { url "https://maven.google.com" }
作者:如风而行
链接:https://www.jianshu.com/p/2e25be54bbab