我的android studio项目给我一个错误,阻止该应用程序运行。看来该错误来自我的成绩文件。这是我的代码。
<!DOCTYPE html>
<html lang="en">
<head>
<title>Email Verification</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js">
</script>
</head>
<body>
<div class="container">
<h2 class="well text-center">Email Verification Link Below</h2>
<a href="{{ route('sendEmailDone',["email"=>$user->email,"verifyToken"=>$user->verifyToken]) }}" class="btn btn-info btn-block" target="_blank">Verify Email Button</a>
</div>
</body>
</html>
基于此错误,似乎我需要更新我的Google Play服务插件。你能帮我吗?