在集成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" }

WechatIMG139.jpeg