## 該当するコード ```csharp= credential = GoogleCredential.FromStream(credentialStream).CreateScoped(Scopes); ``` ```csharp= var appendResponse = await appendRequest.ExecuteAsync(); ``` ## 解決策 link.xmlを書く ```xml= <linker> <assembly fullname="Google.Apis.Auth" preserve="all"/> <assembly fullname="Google.Apis" preserve="all"/> <assembly fullname="Google.Apis.Core" preserve="all"/> <assembly fullname="Google.Apis.Sheets.v4" preserve="all"/> </linker> ``` 内部でリフレクションを使っているみたいなので、Android(AOT)の場合だとうまく動作しなかったです。 なので、削除されないように指定します。