我试图安装' Xamarin.Firebase.Storage.42.1021.1'所以我可以将照片上传到我的firebase数据库
我定位' MonoAndroid,版本= v7.1'
但是,当我尝试安装软件包时,我得到以下内容
Unable to find a version of 'Xamarin.Firebase.Common' that is compatible with 'Xamarin.Firebase.Auth 42.1024.0-beta1 constraint: Xamarin.Firebase.Common (= 42.1024.0-beta1)', 'Xamarin.Firebase.Storage 42.1021.1 constraint: Xamarin.Firebase.Common (= 42.1021.1)'.
是否有快速修复而不破坏我的项目?
答案 0 :(得分:2)
您可以查看Xamarin.Firebase.Storage和Xamarin.Firebase.Auth的<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>INTI Reservation System</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<table width="300" class="rightdrop">
<tr>
<td>
<a href="#">C1</a>
<div class="cell">
<p><b>Name: </b> </p>
<p><b>Student ID: </b></p>
</div>
</td>
</tr>
<tr>
<td>
<a href="#">C2</a>
<div class="cell">
<p><b>Name :</b><input type="text" maxlength="10" placeholder="Enter you name"> </p>
<p><b>Password :</b><input type="password" maxlength="8" placeholder="Enter you password"></p>
<div class="submitButton">
<input type="submit">
</div>
</div>
</td>
</tr>
</table>
<table width="300" class="leftdrop">
<tr>
<td>
<a href="#">C1</a>
<div class="cell">
<p><b>Name: </b> </p>
<p><b>Student ID: </b></p>
</div>
</td>
</tr>
<tr>
<td>
<a href="#">C2</a>
<div class="cell">
<p><b>Name :</b><input type="text" maxlength="10" placeholder="Enter you name"> </p>
<p><b>Password :</b><input type="password" maxlength="8" placeholder="Enter you password"></p>
<div class="submitButton">
<input type="submit">
</div>
</div>
</td>
</tr>
</table>
</body>
</html>
。
根据您的错误消息,您已安装Xamarin.Firebase.Auth 42.1024.0-beta1包,该包需要依赖Dependencies
。
尝试将Xamarin.Firebase.Common (= 42.1024.0-beta1)
软件包降级到版本42.1021.1。