我正在尝试从github运行this app。第一次尝试时,我遇到了“错误:找不到适合现场的吸气剂”。错误,我看到了这个solution,并将所有“私人”更改为“公开”
在此之后,当尝试运行应用程序时出现此错误
[WebMethod(EnableSession = true)]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public int UploadCertificate(string file, string password)
{
try
{
byte[] pfx_bytes = Convert.FromBase64String(file);
uploadCertificateToS3(pfx_bytes, password);
}
catch(Exception e)
{
Console.WriteLine(e.message);
}
return -1;
}
我尝试导入,但是我是android的新手,但是我做不到。
这是我的Java文件
error: cannot access Trackable
class file for com.arthurivanets.adapster.model.markers.Trackable not found
这是我的android studio ss
有人知道我该如何解决这个问题?