We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29b1dc5 commit ae4143aCopy full SHA for ae4143a
storage/integration_test/src/integration_test.cc
@@ -61,10 +61,14 @@ using app_framework::LogError;
61
const char* kStorageUrl = nullptr;
62
63
#if FIREBASE_PLATFORM_DESKTOP
64
-// Use a larger file on desktop...
+// Use a larger file on desktop.
65
const int kLargeFileMegabytes = 64;
66
-#else
67
-// ...and a smaller file on mobile.
+#elif FIREBASE_PLATFORM_ANDROID
+// Android FTL devices can sometimes be really slow.
68
+// Use a much smaller file.
69
+const int kLargeFileMegabytes = 8;
70
+#else // iOS or tvOS
71
+// iOS FTL devices can handle a medium-sized file.
72
const int kLargeFileMegabytes = 32;
73
#endif
74
0 commit comments