本文介绍了Android-Firebase-TaskSnapshot-方法应仅在私有范围内访问?与Android Studio 2.3的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
.addOnSuccessListener(new OnSuccessListener<UploadTask.TaskSnapshot>() {
@Override
public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) {
Uri downloadUrl = taskSnapshot.getDownloadUrl();
}
});
错误TaskSnapshot -使用android studio 2.3时,只能在私有范围内访问方法.
Error TaskSnapshot - Method should only be accessed within private scope while using android studio 2.3.
推荐答案
似乎是一个错误,也许它将在下一版本中得到修复.同时,请尝试以下操作:
It seems to be a bug, maybe it will be fixed in the next version. In the mean time, try this:
@SuppressWarnings("VisibleForTests") Uri downloadUrl = taskSnapshot.getDownloadUrl();
这篇关于Android-Firebase-TaskSnapshot-方法应仅在私有范围内访问?与Android Studio 2.3的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!