You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Log.e(TAG, "getCacheDir().listFiles() somehow returned null, this should never happen... Skipping cache cleanup...");
215
+
return;
216
+
}
217
+
218
+
for (Filefile : tempFiles) {
219
+
if (file.lastModified() < twentyFourHoursAgo) {
220
+
if (!file.delete()) {
221
+
Log.w(TAG, "Failed to delete cache file " + file.getPath());
222
+
}
223
+
};
224
+
}
225
+
}).start();
226
+
204
227
// We should extract the share intent after we called the super.onCreate as it may need to spawn a dialog window and the app needs to be initialized to not crash
0 commit comments