From c5054a9be74f82f87f94ef4026b52952fb16665d Mon Sep 17 00:00:00 2001 From: kagasu Date: Mon, 2 Jul 2018 14:52:50 +0900 Subject: [PATCH] fix --- Test/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test/Program.cs b/Test/Program.cs index d51a9dd..55e11f9 100644 --- a/Test/Program.cs +++ b/Test/Program.cs @@ -43,7 +43,7 @@ static async Task GetAppDetail(GooglePlayStoreClient client, st static async Task DownloadApk(GooglePlayStoreClient client, string packageName, int offerType, int versionCode) { - var res = await client.Purchase(packageName, offerType, versionCode); + await client.Purchase(packageName, offerType, versionCode); var bytes = await client.DownloadApk(packageName); File.WriteAllBytes("Gmail.apk", bytes); }