我正在尝试将firebase远程配置添加到我的项目中,但它与我的gms版本冲突,错误代码:
错误:(674,25)错误:无法访问AbstractSafeParcelable 找不到com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable的类文件
当我点击它发送给我这个项目的方法时:
import sys, os.path
sys.path.append(os.path.abspath(os.path.join(os.path.dirname( __file__ ), 'myvenv/Lib/site-packages')))
我尝试了一些我在stackoverflow本身找到的建议,比如将gms的版本更改为10.0.1,但最终会产生另一个错误:
错误:任务':app:processDebugGoogleServices'的执行失败。 请修改版本冲突,方法是更新google-services插件的版本(https://bintray.com/android/android-tools/com.google.gms.google-services/提供有关最新版本的信息)或将com.google.android.gms版本更新为9.0.2。
我可以在这里检查我的原始build.gradle:`apply plugin:
protected void RequestLocation() {
locationRequest = new LocationRequest();
locationRequest.setInterval(10000); // for this line
locationRequest.setFastestInterval(5000);
locationRequest.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
}