我正在构建我的flutter项目的apk,但是每次尝试构建apk时,都会发生以下链接中所述的错误。
我提供此链接是因为堆栈溢出不允许我提供完整的堆栈跟踪。 请帮助我,以便我发布我的应用程序
答案 0 :(得分:1)
我发现您正在使用#!/usr/bin/perl
use strict;
use warnings;
use utf8;
use Email::Send::SMTP::Gmail;
my $gmail_user = `cat ~/.mailconfig | grep GMAIL_USER | grep -o '".*"' | sed 's/"//g'`;
my $gmail_pass = `cat ~/.mailconfig | grep GMAIL_PASS | grep -o '".*"' | sed 's/"//g'`;
my ($mail,$error)=Email::Send::SMTP::Gmail->new( -layer=>'ssl',
-port=>'465',
-smtp=>'smtp.gmail.com',
-login=>$gmail_user,
-pass=>$gmail_pass);
print "session error: $error" unless ($mail!=-1);
$mail->send(-to=>'foo@bar.xyz',
-subject=>"Subject",
-body=>'html body',
-contenttype=>'text/html',
-attachments=>'./att.txt');
$mail->bye;
,但是最新版本是image_downloader-0.16.2
的变更日志,它们是0.19.0
。尝试更新Fixed AndroidX migration
软件包,因为最近有很多与image_downloader
相关的错误。