diff --git a/test_runner/src/main/kotlin/ftl/client/google/AppDetails.kt b/test_runner/src/main/kotlin/ftl/client/google/AppDetails.kt index bc5af5d6fe..18df37007d 100644 --- a/test_runner/src/main/kotlin/ftl/client/google/AppDetails.kt +++ b/test_runner/src/main/kotlin/ftl/client/google/AppDetails.kt @@ -1,7 +1,8 @@ package ftl.client.google import com.google.testing.model.FileReference +import ftl.http.executeWithRetry fun getAndroidAppDetails(gcsAppPath: String): String = GcTesting.get.ApplicationDetailService().getApkDetails(FileReference().apply { gcsPath = gcsAppPath }) - .execute()?.apkDetail?.apkManifest?.packageName?.toString().orEmpty() + .executeWithRetry()?.apkDetail?.apkManifest?.packageName?.toString().orEmpty()