diff --git a/app/src/androidTest/java/org/fdroid/fdroid/work/FDroidMetricsWorkerTest.java b/app/src/androidTest/java/org/fdroid/fdroid/work/FDroidMetricsWorkerTest.java new file mode 100644 index 000000000..a3f3d08ff --- /dev/null +++ b/app/src/androidTest/java/org/fdroid/fdroid/work/FDroidMetricsWorkerTest.java @@ -0,0 +1,72 @@ +/* + * Copyright (C) 2021 Hans-Christoph Steiner + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +package org.fdroid.fdroid.work; + +import androidx.arch.core.executor.testing.InstantTaskExecutorRule; +import androidx.test.filters.LargeTest; +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.work.OneTimeWorkRequest; +import androidx.work.WorkInfo; +import com.google.common.util.concurrent.ListenableFuture; +import org.junit.Ignore; +import org.junit.Rule; +import org.junit.Test; + +import java.io.IOException; +import java.util.concurrent.ExecutionException; + +import static org.junit.Assert.assertEquals; + +/** + * This actually runs {@link FDroidMetricsWorker} on a device/emulator and + * submits a report to https://metrics.cleaninsights.org + *

+ * This is marked with {@link LargeTest} to exclude it from running on GitLab CI + * because it always fails on the emulator tests there. Also, it actually submits + * a report. + */ +@LargeTest +public class FDroidMetricsWorkerTest { + public static final String TAG = "FDroidMetricsWorkerTest"; + + @Rule + public InstantTaskExecutorRule instantTaskExecutorRule = new InstantTaskExecutorRule(); + + @Rule + public WorkManagerTestRule workManagerTestRule = new WorkManagerTestRule(); + + /** + * A test for easy manual testing. + */ + @Ignore + @Test + public void testGenerateReport() throws IOException { + String json = FDroidMetricsWorker.generateReport( + InstrumentationRegistry.getInstrumentation().getTargetContext()); + System.out.println(json); + } + + @Test + public void testWorkRequest() throws ExecutionException, InterruptedException { + OneTimeWorkRequest request = new OneTimeWorkRequest.Builder(FDroidMetricsWorker.class).build(); + workManagerTestRule.workManager.enqueue(request).getResult(); + ListenableFuture workInfo = workManagerTestRule.workManager.getWorkInfoById(request.getId()); + assertEquals(WorkInfo.State.SUCCEEDED, workInfo.get().getState()); + } +} diff --git a/app/src/androidTest/proguard-rules.pro b/app/src/androidTest/proguard-rules.pro index ef824638a..e991b07a0 100644 --- a/app/src/androidTest/proguard-rules.pro +++ b/app/src/androidTest/proguard-rules.pro @@ -1,3 +1,7 @@ +-dontoptimize +-dontwarn +-dontobfuscate + -dontwarn android.test.** -dontwarn android.support.test.** -dontnote junit.framework.** @@ -14,3 +18,8 @@ -keep class junit.** { *; } -dontwarn junit.** + +# This is necessary so that RemoteWorkManager can be initialized (also marked with @Keep) +-keep class androidx.work.multiprocess.RemoteWorkManagerClient { + public (...); +} diff --git a/app/src/basic/res/xml/preferences.xml b/app/src/basic/res/xml/preferences.xml index b65c0cb0a..f23e81ea3 100644 --- a/app/src/basic/res/xml/preferences.xml +++ b/app/src/basic/res/xml/preferences.xml @@ -153,6 +153,12 @@ android:summary="@string/keep_install_history_summary" android:defaultValue="false" android:dependency="expert"/> + example */ diff --git a/app/src/main/java/org/fdroid/fdroid/Preferences.java b/app/src/main/java/org/fdroid/fdroid/Preferences.java index 7a4839605..64b4d30e4 100644 --- a/app/src/main/java/org/fdroid/fdroid/Preferences.java +++ b/app/src/main/java/org/fdroid/fdroid/Preferences.java @@ -28,11 +28,10 @@ import android.content.SharedPreferences; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.os.Build; - -import androidx.core.content.ContextCompat; -import androidx.preference.PreferenceManager; import android.text.format.DateUtils; import android.util.Log; +import androidx.core.content.ContextCompat; +import androidx.preference.PreferenceManager; import org.fdroid.fdroid.installer.PrivilegedInstaller; import org.fdroid.fdroid.net.ConnectivityMonitorService; @@ -95,6 +94,7 @@ public final class Preferences implements SharedPreferences.OnSharedPreferenceCh public static final String PREF_KEEP_CACHE_TIME = "keepCacheFor"; public static final String PREF_UNSTABLE_UPDATES = "unstableUpdates"; public static final String PREF_KEEP_INSTALL_HISTORY = "keepInstallHistory"; + public static final String PREF_SEND_TO_FDROID_METRICS = "sendToFdroidMetrics"; public static final String PREF_EXPERT = "expert"; public static final String PREF_FORCE_OLD_INDEX = "forceOldIndex"; public static final String PREF_PRIVILEGED_INSTALLER = "privilegedInstaller"; @@ -363,6 +363,10 @@ public final class Preferences implements SharedPreferences.OnSharedPreferenceCh return preferences.getBoolean(PREF_KEEP_INSTALL_HISTORY, IGNORED_B); } + public boolean isSendingToFDroidMetrics() { + return isKeepingInstallHistory() && preferences.getBoolean(PREF_SEND_TO_FDROID_METRICS, IGNORED_B); + } + public boolean showIncompatibleVersions() { return preferences.getBoolean(PREF_SHOW_INCOMPAT_VERSIONS, IGNORED_B); } diff --git a/app/src/main/java/org/fdroid/fdroid/Utils.java b/app/src/main/java/org/fdroid/fdroid/Utils.java index 34623bd1c..4020156f8 100644 --- a/app/src/main/java/org/fdroid/fdroid/Utils.java +++ b/app/src/main/java/org/fdroid/fdroid/Utils.java @@ -811,6 +811,10 @@ public final class Utils { return versionName; } + public static String getUserAgent() { + return "F-Droid " + BuildConfig.VERSION_NAME; + } + /** * Try to get the {@link PackageInfo} for the {@code packageName} provided. * diff --git a/app/src/main/java/org/fdroid/fdroid/installer/InstallHistoryService.java b/app/src/main/java/org/fdroid/fdroid/installer/InstallHistoryService.java index 4fd271d23..40d3f6654 100644 --- a/app/src/main/java/org/fdroid/fdroid/installer/InstallHistoryService.java +++ b/app/src/main/java/org/fdroid/fdroid/installer/InstallHistoryService.java @@ -26,8 +26,8 @@ import android.content.Intent; import android.content.IntentFilter; import android.net.Uri; import android.os.Process; -import androidx.localbroadcastmanager.content.LocalBroadcastManager; import android.text.TextUtils; +import androidx.localbroadcastmanager.content.LocalBroadcastManager; import org.fdroid.fdroid.Utils; import org.fdroid.fdroid.data.Apk; @@ -89,6 +89,12 @@ public class InstallHistoryService extends IntentService { context.startService(intent); } + public static File getInstallHistoryFile(Context context) { + File installHistoryDir = new File(context.getCacheDir(), "install_history"); + installHistoryDir.mkdir(); + return new File(installHistoryDir, "all"); + } + public InstallHistoryService() { super("InstallHistoryService"); } @@ -112,9 +118,7 @@ public class InstallHistoryService extends IntentService { values.add(String.valueOf(versionCode)); values.add(intent.getAction()); - File installHistoryDir = new File(getCacheDir(), "install_history"); - installHistoryDir.mkdir(); - File logFile = new File(installHistoryDir, "all"); + File logFile = getInstallHistoryFile(this); FileWriter fw = null; PrintWriter out = null; try { diff --git a/app/src/main/java/org/fdroid/fdroid/net/HttpDownloader.java b/app/src/main/java/org/fdroid/fdroid/net/HttpDownloader.java index 418ff947b..8400f7cc6 100644 --- a/app/src/main/java/org/fdroid/fdroid/net/HttpDownloader.java +++ b/app/src/main/java/org/fdroid/fdroid/net/HttpDownloader.java @@ -28,7 +28,6 @@ import android.text.TextUtils; import android.util.Base64; import info.guardianproject.netcipher.NetCipher; import org.apache.commons.io.FileUtils; -import org.fdroid.fdroid.BuildConfig; import org.fdroid.fdroid.FDroidApp; import org.fdroid.fdroid.Utils; @@ -195,7 +194,7 @@ public class HttpDownloader extends Downloader { && FDroidApp.subnetInfo.isInRange(host); // on the same subnet as we are } - private HttpURLConnection getConnection() throws SocketTimeoutException, IOException { + HttpURLConnection getConnection() throws SocketTimeoutException, IOException { HttpURLConnection connection; if (isSwapUrl(sourceUrl)) { // swap never works with a proxy, its unrouted IP on the same subnet @@ -209,7 +208,7 @@ public class HttpDownloader extends Downloader { } } - connection.setRequestProperty("User-Agent", "F-Droid " + BuildConfig.VERSION_NAME); + connection.setRequestProperty("User-Agent", Utils.getUserAgent()); connection.setConnectTimeout(getTimeout()); connection.setReadTimeout(getTimeout()); diff --git a/app/src/main/java/org/fdroid/fdroid/net/HttpPoster.java b/app/src/main/java/org/fdroid/fdroid/net/HttpPoster.java new file mode 100644 index 000000000..52a194177 --- /dev/null +++ b/app/src/main/java/org/fdroid/fdroid/net/HttpPoster.java @@ -0,0 +1,47 @@ +package org.fdroid.fdroid.net; + +import android.net.Uri; + +import java.io.BufferedWriter; +import java.io.File; +import java.io.FileNotFoundException; +import java.io.IOException; +import java.io.OutputStream; +import java.io.OutputStreamWriter; +import java.net.HttpURLConnection; +import java.net.MalformedURLException; + +/** + * HTTP POST a JSON string to the URL configured in the constructor. + */ +public class HttpPoster extends HttpDownloader { + + public HttpPoster(String url) throws FileNotFoundException, MalformedURLException { + this(Uri.parse(url), null); + } + + HttpPoster(Uri uri, File destFile) throws FileNotFoundException, MalformedURLException { + super(uri, destFile); + } + + /** + * @return The HTTP Status Code + */ + public void post(String json) throws IOException { + HttpURLConnection connection = getConnection(); + connection.setRequestMethod("POST"); + connection.setRequestProperty("Content-Type", "application/json; utf-8"); + connection.setDoOutput(true); + OutputStream os = connection.getOutputStream(); + BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(os, "UTF-8")); + writer.write(json, 0, json.length()); + writer.flush(); + writer.close(); + os.close(); + connection.connect(); + int statusCode = connection.getResponseCode(); + if (statusCode < 200 || statusCode >= 300) { + throw new IOException("HTTP POST failed with " + statusCode + " " + connection.getResponseMessage()); + } + } +} diff --git a/app/src/main/java/org/fdroid/fdroid/views/InstallHistoryActivity.java b/app/src/main/java/org/fdroid/fdroid/views/InstallHistoryActivity.java index 8efc42ba8..d2b0df250 100644 --- a/app/src/main/java/org/fdroid/fdroid/views/InstallHistoryActivity.java +++ b/app/src/main/java/org/fdroid/fdroid/views/InstallHistoryActivity.java @@ -25,17 +25,19 @@ import android.content.Intent; import android.database.Cursor; import android.os.Bundle; import android.os.ParcelFileDescriptor; -import androidx.core.app.ShareCompat; -import androidx.appcompat.app.AppCompatActivity; -import androidx.appcompat.widget.Toolbar; import android.view.Menu; import android.view.MenuItem; import android.widget.TextView; +import androidx.appcompat.app.AppCompatActivity; +import androidx.appcompat.widget.Toolbar; +import androidx.core.app.ShareCompat; import org.apache.commons.io.IOUtils; +import org.fdroid.fdroid.Preferences; import org.fdroid.fdroid.R; import org.fdroid.fdroid.data.Repo; import org.fdroid.fdroid.data.RepoProvider; import org.fdroid.fdroid.installer.InstallHistoryService; +import org.fdroid.fdroid.work.FDroidMetricsWorker; import java.io.FileDescriptor; import java.io.FileInputStream; @@ -45,15 +47,35 @@ import java.nio.charset.Charset; public class InstallHistoryActivity extends AppCompatActivity { public static final String TAG = "InstallHistoryActivity"; + public static final String EXTRA_SHOW_FDROID_METRICS = "showFDroidMetrics"; + + private boolean showingInstallHistory; + private Toolbar toolbar; + private MenuItem showMenuItem; + private TextView textView; + private String appName; + @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_install_history); - Toolbar toolbar = findViewById(R.id.toolbar); + toolbar = findViewById(R.id.toolbar); toolbar.setTitle(getString(R.string.install_history)); setSupportActionBar(toolbar); getSupportActionBar().setDisplayHomeAsUpEnabled(true); + textView = findViewById(R.id.text); + appName = getString(R.string.app_name); + + Intent intent = getIntent(); + if (intent != null && intent.getBooleanExtra(EXTRA_SHOW_FDROID_METRICS, false)) { + showFDroidMetricsReport(); + } else { + showInstallHistory(); + } + } + + private void showInstallHistory() { String text = ""; try { ContentResolver resolver = getContentResolver(); @@ -71,13 +93,35 @@ public class InstallHistoryActivity extends AppCompatActivity { } catch (IOException | SecurityException | IllegalStateException e) { e.printStackTrace(); } - TextView textView = findViewById(R.id.text); + toolbar.setTitle(getString(R.string.install_history)); textView.setText(text); + showingInstallHistory = true; + if (showMenuItem != null) { + showMenuItem.setVisible(Preferences.get().isSendingToFDroidMetrics()); + showMenuItem.setTitle(R.string.menu_show_fdroid_metrics_report); + } + } + + private void showFDroidMetricsReport() { + toolbar.setTitle(getString(R.string.fdroid_metrics_report, appName)); + textView.setText(FDroidMetricsWorker.generateReport(this)); + showingInstallHistory = false; + if (showMenuItem != null) { + showMenuItem.setVisible(Preferences.get().isSendingToFDroidMetrics()); + showMenuItem.setTitle(R.string.menu_show_install_history); + } } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.install_history, menu); + showMenuItem = menu.findItem(R.id.menu_show); + showMenuItem.setVisible(Preferences.get().isSendingToFDroidMetrics()); + if (showingInstallHistory) { + showMenuItem.setTitle(R.string.menu_show_fdroid_metrics_report); + } else { + showMenuItem.setTitle(R.string.menu_show_install_history); + } return super.onCreateOptionsMenu(menu); } @@ -86,30 +130,47 @@ public class InstallHistoryActivity extends AppCompatActivity { switch (item.getItemId()) { case R.id.menu_share: - StringBuilder stringBuilder = new StringBuilder(); - stringBuilder.append("Repos:\n"); - for (Repo repo : RepoProvider.Helper.all(this)) { - if (repo.inuse) { - stringBuilder.append("* "); - stringBuilder.append(repo.address); - stringBuilder.append('\n'); + ShareCompat.IntentBuilder intentBuilder = ShareCompat.IntentBuilder.from(this); + if (showingInstallHistory) { + StringBuilder stringBuilder = new StringBuilder(); + stringBuilder.append("Repos:\n"); + for (Repo repo : RepoProvider.Helper.all(this)) { + if (repo.inuse) { + stringBuilder.append("* "); + stringBuilder.append(repo.address); + stringBuilder.append('\n'); + } } + intentBuilder + .setText(stringBuilder.toString()) + .setStream(InstallHistoryService.LOG_URI) + .setType("text/plain") + .setSubject(getString(R.string.send_history_csv, appName)) + .setChooserTitle(R.string.send_install_history); + } else { + intentBuilder + .setText(textView.getText()) + .setType("application/json") + .setSubject(getString(R.string.send_fdroid_metrics_json, appName)) + .setChooserTitle(R.string.send_fdroid_metrics_report); } - ShareCompat.IntentBuilder intentBuilder = ShareCompat.IntentBuilder.from(this) - .setStream(InstallHistoryService.LOG_URI) - .setSubject(getString(R.string.send_history_csv, getString(R.string.app_name))) - .setChooserTitle(R.string.send_install_history) - .setText(stringBuilder.toString()) - .setType("text/plain"); Intent intent = intentBuilder.getIntent(); intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); startActivity(intent); break; case R.id.menu_delete: - getContentResolver().delete(InstallHistoryService.LOG_URI, null, null); - TextView textView = findViewById(R.id.text); + if (showingInstallHistory) { + getContentResolver().delete(InstallHistoryService.LOG_URI, null, null); + } textView.setText(""); break; + case R.id.menu_show: + if (showingInstallHistory) { + showFDroidMetricsReport(); + } else { + showInstallHistory(); + } + break; } return super.onOptionsItemSelected(item); } diff --git a/app/src/main/java/org/fdroid/fdroid/views/PreferencesFragment.java b/app/src/main/java/org/fdroid/fdroid/views/PreferencesFragment.java index 6717d4f57..ad10e4669 100644 --- a/app/src/main/java/org/fdroid/fdroid/views/PreferencesFragment.java +++ b/app/src/main/java/org/fdroid/fdroid/views/PreferencesFragment.java @@ -34,7 +34,7 @@ import android.os.Build; import android.os.Bundle; import android.text.TextUtils; import android.view.WindowManager; - +import android.widget.Toast; import androidx.appcompat.app.AppCompatActivity; import androidx.preference.CheckBoxPreference; import androidx.preference.EditTextPreference; @@ -47,7 +47,7 @@ import androidx.preference.SeekBarPreference; import androidx.preference.SwitchPreference; import androidx.recyclerview.widget.LinearSmoothScroller; import androidx.recyclerview.widget.RecyclerView; - +import info.guardianproject.netcipher.proxy.OrbotHelper; import org.fdroid.fdroid.FDroidApp; import org.fdroid.fdroid.Languages; import org.fdroid.fdroid.Preferences; @@ -58,8 +58,7 @@ import org.fdroid.fdroid.data.RepoProvider; import org.fdroid.fdroid.installer.InstallHistoryService; import org.fdroid.fdroid.installer.PrivilegedInstaller; import org.fdroid.fdroid.work.CleanCacheWorker; - -import info.guardianproject.netcipher.proxy.OrbotHelper; +import org.fdroid.fdroid.work.FDroidMetricsWorker; public class PreferencesFragment extends PreferenceFragmentCompat implements SharedPreferences.OnSharedPreferenceChangeListener { @@ -104,6 +103,7 @@ public class PreferencesFragment extends PreferenceFragmentCompat private SwitchPreference useTorCheckPref; private Preference updateAutoDownloadPref; private CheckBoxPreference keepInstallHistoryPref; + private CheckBoxPreference sendToFDroidMetricsPref; private Preference installHistoryPref; private long currentKeepCacheTime; private int overWifiPrevious; @@ -115,14 +115,22 @@ public class PreferencesFragment extends PreferenceFragmentCompat @Override public void onCreatePreferences(Bundle bundle, String s) { - Preferences.get().migrateOldPreferences(); + Preferences preferences = Preferences.get(); + preferences.migrateOldPreferences(); addPreferencesFromResource(R.xml.preferences); otherPrefGroup = (PreferenceGroup) findPreference("pref_category_other"); keepInstallHistoryPref = (CheckBoxPreference) findPreference(Preferences.PREF_KEEP_INSTALL_HISTORY); + sendToFDroidMetricsPref = findPreference(Preferences.PREF_SEND_TO_FDROID_METRICS); + sendToFDroidMetricsPref.setEnabled(keepInstallHistoryPref.isChecked()); installHistoryPref = findPreference("installHistory"); installHistoryPref.setVisible(keepInstallHistoryPref.isChecked()); + if (preferences.isSendingToFDroidMetrics()) { + installHistoryPref.setTitle(R.string.install_history_and_metrics); + } else { + installHistoryPref.setTitle(R.string.install_history); + } useTorCheckPref = (SwitchPreference) findPreference(Preferences.PREF_USE_TOR); useTorCheckPref.setOnPreferenceChangeListener(useTorChangedListener); @@ -369,11 +377,26 @@ public class PreferencesFragment extends PreferenceFragmentCompat if (keepInstallHistoryPref.isChecked()) { InstallHistoryService.register(getActivity()); installHistoryPref.setVisible(true); + sendToFDroidMetricsPref.setEnabled(true); } else { InstallHistoryService.unregister(getActivity()); installHistoryPref.setVisible(false); + sendToFDroidMetricsPref.setEnabled(false); } + setFDroidMetricsWorker(); break; + + case Preferences.PREF_SEND_TO_FDROID_METRICS: + setFDroidMetricsWorker(); + break; + } + } + + private void setFDroidMetricsWorker() { + if (sendToFDroidMetricsPref.isEnabled() && sendToFDroidMetricsPref.isChecked()) { + FDroidMetricsWorker.schedule(getContext()); + } else { + FDroidMetricsWorker.cancel(getContext()); } } @@ -526,6 +549,18 @@ public class PreferencesFragment extends PreferenceFragmentCompat } else { getActivity().getWindow().clearFlags(WindowManager.LayoutParams.FLAG_SECURE); } + } else if (Preferences.PREF_SEND_TO_FDROID_METRICS.equals(key)) { + if (Preferences.get().isSendingToFDroidMetrics()) { + String msg = getString(R.string.toast_metrics_in_install_history, + getContext().getString(R.string.app_name)); + Toast.makeText(getContext(), msg, Toast.LENGTH_LONG).show(); + installHistoryPref.setTitle(R.string.install_history_and_metrics); + Intent intent = new Intent(getActivity(), InstallHistoryActivity.class); + intent.putExtra(InstallHistoryActivity.EXTRA_SHOW_FDROID_METRICS, true); + startActivity(intent); + } else { + installHistoryPref.setTitle(R.string.install_history); + } } } } diff --git a/app/src/main/java/org/fdroid/fdroid/work/FDroidMetricsWorker.java b/app/src/main/java/org/fdroid/fdroid/work/FDroidMetricsWorker.java new file mode 100644 index 000000000..434f16649 --- /dev/null +++ b/app/src/main/java/org/fdroid/fdroid/work/FDroidMetricsWorker.java @@ -0,0 +1,452 @@ +/* + * Copyright (C) 2021 Hans-Christoph Steiner + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 3 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +package org.fdroid.fdroid.work; + +import android.content.Context; +import android.content.pm.PackageInfo; +import android.content.pm.PackageManager; +import android.os.Build; +import android.text.TextUtils; +import android.text.format.DateUtils; +import androidx.annotation.NonNull; +import androidx.work.Constraints; +import androidx.work.ExistingPeriodicWorkPolicy; +import androidx.work.ListenableWorker; +import androidx.work.PeriodicWorkRequest; +import androidx.work.WorkManager; +import androidx.work.Worker; +import androidx.work.WorkerParameters; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.MapperFeature; +import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializationFeature; +import org.apache.commons.io.FileUtils; +import org.fdroid.fdroid.Preferences; +import org.fdroid.fdroid.Utils; +import org.fdroid.fdroid.data.App; +import org.fdroid.fdroid.data.InstalledAppProvider; +import org.fdroid.fdroid.installer.InstallHistoryService; +import org.fdroid.fdroid.net.HttpPoster; + +import java.io.File; +import java.io.IOException; +import java.nio.charset.Charset; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Collections; +import java.util.Comparator; +import java.util.Date; +import java.util.List; +import java.util.Locale; +import java.util.Objects; +import java.util.Random; +import java.util.concurrent.TimeUnit; + +/** + * This gathers all the information needed for F-Droid Metrics, aka the + * "Popularity Contest", and submits it to the Clean Insights Matomo. This + * should never include any Personally Identifiable Information (PII) + * like telephone numbers, IP Addresses, MAC, SSID, IMSI, IMEI, user accounts, + * etc. + *

+ * This uses static methods so that they can easily be tested in Robolectric + * rather than painful, slow, flaky emulator tests. + */ +public class FDroidMetricsWorker extends Worker { + + public static final String TAG = "FDroidMetricsWorker"; + + static SimpleDateFormat weekFormatter = new SimpleDateFormat("yyyy ww", Locale.ENGLISH); + + private static final ArrayList EVENTS = new ArrayList<>(); + + public FDroidMetricsWorker(@NonNull Context context, @NonNull WorkerParameters workerParams) { + super(context, workerParams); + } + + /** + * Schedule or cancel a work request to update the app index, according to the + * current preferences. It is meant to run weekly, so it will schedule one week + * from the last run. If it has never been run, it will run as soon as possible. + *

+ * Although {@link Constraints.Builder#setRequiresDeviceIdle(boolean)} is available + * down to {@link Build.VERSION_CODES#M}, it will cause {@code UpdateService} to + * rarely run, if ever on some devices. So {@link Constraints.Builder#setRequiresDeviceIdle(boolean)} + * should only be used in conjunction with + * {@link Constraints.Builder#setTriggerContentMaxDelay(long, TimeUnit)} to ensure + * that updates actually happen regularly. + */ + public static void schedule(final Context context) { + final WorkManager workManager = WorkManager.getInstance(context); + long interval = TimeUnit.DAYS.toMillis(7); + + final Constraints.Builder constraintsBuilder = new Constraints.Builder() + .setRequiresCharging(true) + .setRequiresBatteryNotLow(true); + // TODO use the Data/WiFi preferences here + if (Build.VERSION.SDK_INT >= 24) { + constraintsBuilder.setTriggerContentMaxDelay(interval, TimeUnit.MILLISECONDS); + constraintsBuilder.setRequiresDeviceIdle(true); + } + final PeriodicWorkRequest cleanCache = + new PeriodicWorkRequest.Builder(FDroidMetricsWorker.class, interval, TimeUnit.MILLISECONDS) + .setConstraints(constraintsBuilder.build()) + .build(); + workManager.enqueueUniquePeriodicWork(TAG, ExistingPeriodicWorkPolicy.REPLACE, cleanCache); + Utils.debugLog(TAG, "Scheduled periodic work"); + } + + public static void cancel(final Context context) { + WorkManager.getInstance(context).cancelUniqueWork(TAG); + } + + @NonNull + @Override + public Result doWork() { + // TODO check useTor preference and force-submit over Tor. + String json = generateReport(getApplicationContext()); + try { + HttpPoster httpPoster = new HttpPoster("https://metrics.cleaninsights.org/cleaninsights.php"); + httpPoster.post(json); + return ListenableWorker.Result.success(); + } catch (IOException e) { + e.printStackTrace(); + } + + return ListenableWorker.Result.retry(); + } + + /** + * Convert a Java timestamp in milliseconds to a CleanInsights/Matomo timestamp + * normalized to the week and in UNIX epoch seconds format. + */ + static long toCleanInsightsTimestamp(long timestamp) { + return toCleanInsightsTimestamp(timestamp, timestamp); + } + + /** + * Convert a Java timestamp in milliseconds to a CleanInsights/Matomo timestamp + * normalized to the week and in UNIX epoch seconds format, plus the time + * difference between {@code relativeTo} and {@code timestamp}. + */ + static long toCleanInsightsTimestamp(long relativeTo, long timestamp) { + long diff = timestamp - relativeTo; + long weekNumber = timestamp / DateUtils.WEEK_IN_MILLIS; + return ((weekNumber * DateUtils.WEEK_IN_MILLIS) + diff) / 1000L; + } + + static boolean isTimestampInReportingWeek(long timestamp) { + return isTimestampInReportingWeek(getReportingWeekStart(), timestamp); + } + + static boolean isTimestampInReportingWeek(long weekStart, long timestamp) { + long weekEnd = weekStart + DateUtils.WEEK_IN_MILLIS; + return weekStart < timestamp && timestamp < weekEnd; + } + + static long getVersionCode(PackageInfo packageInfo) { + if (Build.VERSION.SDK_INT < 28) { + return packageInfo.versionCode; + } else { + return packageInfo.getLongVersionCode(); + } + } + + /** + * Gets the most recent week that is over based on the current time. + * + * @return start timestamp or 0 on parsing error + */ + static long getReportingWeekStart() { + return getReportingWeekStart(System.currentTimeMillis()); + } + + /** + * Gets the most recent week that is over based on {@code timestamp}. This + * is the testable version of {@link #getReportingWeekStart()} + * + * @return start timestamp or 0 on parsing error + */ + static long getReportingWeekStart(long timestamp) { + try { + Date start = new Date(timestamp - DateUtils.WEEK_IN_MILLIS); + return weekFormatter.parse(weekFormatter.format(start)).getTime(); + } catch (ParseException e) { + // ignored + } + return 0; + } + + /** + * Reads the {@link InstallHistoryService} CSV log, debounces the duplicate events, + * then converts it to {@link MatomoEvent} instances to be gathered. + */ + static Collection parseInstallHistoryCsv(Context context, long weekStart) { + try { + File csv = InstallHistoryService.getInstallHistoryFile(context); + List lines = FileUtils.readLines(csv, Charset.defaultCharset()); + List events = new ArrayList<>(lines.size()); + for (String line : lines) { + RawEvent event = new RawEvent(line.split(",")); + if (isTimestampInReportingWeek(weekStart, event.timestamp)) { + events.add(event); + } + } + Collections.sort(events, new Comparator() { + @Override + public int compare(RawEvent e0, RawEvent e1) { + int applicationIdComparison = e0.applicationId.compareTo(e1.applicationId); + if (applicationIdComparison != 0) { + return applicationIdComparison; + } + int versionCodeComparison = Long.compare(e0.versionCode, e1.versionCode); + if (versionCodeComparison != 0) { + return versionCodeComparison; + } + int timestampComparison = Long.compare(e0.timestamp, e1.timestamp); + if (timestampComparison != 0) { + return timestampComparison; + } + return 0; + } + }); + List toReport = new ArrayList<>(); + RawEvent previousEvent = new RawEvent(new String[]{"0", "", "0", ""}); + for (RawEvent event : events) { + if (!previousEvent.equals(event)) { + toReport.add(new MatomoEvent(event)); + previousEvent = event; + } + } + // TODO add time to INSTALL_COMPLETE evnts, eg INSTALL_COMPLETE - INSTALL_STARTED + return toReport; + } catch (IOException e) { + // ignored + } + return Collections.emptyList(); + } + + public static String generateReport(Context context) { + long weekStart = getReportingWeekStart(); + CleanInsightsReport cleanInsightsReport = new CleanInsightsReport(); + PackageManager pm = context.getPackageManager(); + List packageInfoList = pm.getInstalledPackages(0); + Collections.sort(packageInfoList, new Comparator() { + @Override + public int compare(PackageInfo p1, PackageInfo p2) { + return p1.packageName.compareTo(p2.packageName); + } + }); + App[] installedApps = InstalledAppProvider.Helper.all(context); + EVENTS.add(getDeviceEvent(weekStart, "isPrivilegedInstallerEnabled", + Preferences.get().isPrivilegedInstallerEnabled())); + EVENTS.add(getDeviceEvent(weekStart, "Build.VERSION.SDK_INT", Build.VERSION.SDK_INT)); + if (Build.VERSION.SDK_INT >= 21) { + EVENTS.add(getDeviceEvent(weekStart, "Build.SUPPORTED_ABIS", Arrays.toString(Build.SUPPORTED_ABIS))); + } + + for (PackageInfo packageInfo : packageInfoList) { + boolean found = false; + for (App app : installedApps) { + if (packageInfo.packageName.equals(app.packageName)) { + found = true; + break; + } + } + if (!found) continue; + + if (isTimestampInReportingWeek(weekStart, packageInfo.firstInstallTime)) { + addFirstInstallEvent(pm, packageInfo); + } + if (isTimestampInReportingWeek(weekStart, packageInfo.lastUpdateTime)) { + addLastUpdateTimeEvent(pm, packageInfo); + } + } + EVENTS.addAll(parseInstallHistoryCsv(context, weekStart)); + cleanInsightsReport.events = EVENTS.toArray(new MatomoEvent[0]); + + ObjectMapper mapper = new ObjectMapper(); + mapper.enable(MapperFeature.SORT_PROPERTIES_ALPHABETICALLY); + mapper.enable(SerializationFeature.INDENT_OUTPUT); + try { + return mapper.writeValueAsString(cleanInsightsReport); + } catch (JsonProcessingException e) { + e.printStackTrace(); + } + return null; + } + + /** + * Bare minimum report data in CleanInsights/Matomo format. + * + * @see MatomoEvent + * @see CleanInsights CIMP API + * @see Matomo Event Tracking + */ + private static class CleanInsightsReport { + @JsonProperty + MatomoEvent[] events = new MatomoEvent[0]; + @JsonProperty + final long idsite = 3; // NOPMD + @JsonProperty + final String lang = Locale.getDefault().getLanguage(); + @JsonProperty + final String ua = Utils.getUserAgent(); + } + + private static void addFirstInstallEvent(PackageManager pm, PackageInfo packageInfo) { + addInstallerEvent(pm, packageInfo, "PackageInfo.firstInstall", packageInfo.firstInstallTime); + } + + private static void addLastUpdateTimeEvent(PackageManager pm, PackageInfo packageInfo) { + addInstallerEvent(pm, packageInfo, "PackageInfo.lastUpdateTime", packageInfo.lastUpdateTime); + } + + private static void addInstallerEvent( + PackageManager pm, PackageInfo packageInfo, String action, long timestamp) { + MatomoEvent matomoEvent = new MatomoEvent(timestamp); + matomoEvent.category = "APK"; + matomoEvent.action = action; + matomoEvent.name = pm.getInstallerPackageName(packageInfo.packageName); + matomoEvent.times = 1; + for (MatomoEvent me : EVENTS) { + if (me.equals(matomoEvent)) { + me.times++; + return; + } + } + EVENTS.add(matomoEvent); + } + + /** + * Events which describe the device that is doing the reporting. + */ + private static MatomoEvent getDeviceEvent(long startTime, String action, Object name) { + MatomoEvent matomoEvent = new MatomoEvent(startTime); + matomoEvent.category = "device"; + matomoEvent.action = action; + matomoEvent.name = String.valueOf(name); + matomoEvent.times = 1; + return matomoEvent; + } + + /** + * An event to send to CleanInsights/Matomo with a period of a full, + * normalized week. + * + * @see CleanInsights JSON Schema + * @see Matomo Event Tracking + */ + @SuppressWarnings("checkstyle:MemberName") + @JsonInclude(JsonInclude.Include.NON_EMPTY) + static class MatomoEvent { + @JsonProperty + String category; + @JsonProperty + String action; + @JsonProperty + String name; + @JsonProperty + final long period_start; + @JsonProperty + final long period_end; + @JsonProperty + long times = 0; + @JsonProperty + String value; + + MatomoEvent(long timestamp) { + period_end = toCleanInsightsTimestamp(timestamp); + period_start = period_end - (DateUtils.WEEK_IN_MILLIS / 1000); + } + + MatomoEvent(RawEvent rawEvent) { + this(rawEvent.timestamp); + category = "package"; + action = rawEvent.action; + name = rawEvent.applicationId; + times = 1; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + MatomoEvent that = (MatomoEvent) o; + return period_start == that.period_start && + period_end == that.period_end && + TextUtils.equals(category, that.category) && + TextUtils.equals(action, that.action) && + TextUtils.equals(name, that.name); + } + } + + /** + * A raw event as read from {@link InstallHistoryService}'s CSV log file. + * This should never leave the device as is, it must have data stripped + * from it first. + */ + static class RawEvent { + final long timestamp; + final String applicationId; + final long versionCode; + final String action; + + RawEvent(String[] o) { + timestamp = Long.parseLong(o[0]); + applicationId = o[1]; + versionCode = Long.parseLong(o[2]); + action = o[3]; + } + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + RawEvent event = (RawEvent) o; + return versionCode == event.versionCode && + applicationId.equals(event.applicationId) && + action.equals(event.action); + } + + @Override + public int hashCode() { + if (Build.VERSION.SDK_INT >= 19) { + return Objects.hash(applicationId, versionCode, action); + } else { + return new Random().nextInt(); // quick kludge + } + } + + @Override + public String toString() { + return "RawEvent{" + + "timestamp=" + timestamp + + ", applicationId='" + applicationId + '\'' + + ", versionCode=" + versionCode + + ", action='" + action + '\'' + + '}'; + } + } +} diff --git a/app/src/main/res/menu/install_history.xml b/app/src/main/res/menu/install_history.xml index 500c521e7..363c6fc38 100644 --- a/app/src/main/res/menu/install_history.xml +++ b/app/src/main/res/menu/install_history.xml @@ -6,6 +6,11 @@ android:icon="@drawable/ic_share" android:title="@string/menu_share" app:showAsAction="ifRoom" /> + Send Install History + Send %s Metrics Report %s install history as CSV file + %s metrics report as JSON file Install history + Install history and metrics + %s Metrics Report View the private log of all installs and uninstalls Keep install history Store a log of all installs and uninstalls in a private store + Send usage data + Sends anonymous data weekly to F-Droid Metrics (requires "Keep install history") + + The %s Metric report is viewable in the Install History viewer Send version and UUID to servers Include this app\'s version and a random, unique ID when downloading, takes affect next app restart. @@ -245,6 +253,11 @@ This often occurs with apps installed via Google Play or other sources, if they Updates + + Show metrics report + + Show install history + No recent apps found Once your list of apps has been updated, the latest apps should show here diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml index 36104e8ff..c082e9f88 100644 --- a/app/src/main/res/xml/preferences.xml +++ b/app/src/main/res/xml/preferences.xml @@ -179,6 +179,12 @@ android:summary="@string/keep_install_history_summary" android:defaultValue="false" android:dependency="expert"/> + events = FDroidMetricsWorker.parseInstallHistoryCsv(context, + weekStart); + assertEquals(3, events.size()); + for (MatomoEvent event : events) { + assertEquals(event.name, "com.termux"); + } + + Collection oneWeekAgo = FDroidMetricsWorker.parseInstallHistoryCsv(context, + weekStart - DateUtils.WEEK_IN_MILLIS); + assertEquals(11, oneWeekAgo.size()); + + Collection twoWeeksAgo = FDroidMetricsWorker.parseInstallHistoryCsv(context, + weekStart - (2 * DateUtils.WEEK_IN_MILLIS)); + assertEquals(0, twoWeeksAgo.size()); + + Collection threeWeeksAgo = FDroidMetricsWorker.parseInstallHistoryCsv(context, + weekStart - (3 * DateUtils.WEEK_IN_MILLIS)); + assertEquals(9, threeWeeksAgo.size()); + assertNotEquals(oneWeekAgo, threeWeeksAgo); + } + + @Test + public void testGetReportingWeekStart() throws ParseException { + long now = System.currentTimeMillis(); + long start = FDroidMetricsWorker.getReportingWeekStart(now); + assertTrue((now - DateUtils.WEEK_IN_MILLIS) > start); + assertTrue((now - DateUtils.WEEK_IN_MILLIS) < (start + DateUtils.WEEK_IN_MILLIS)); + } +} diff --git a/app/src/test/resources/cimp.schema.json b/app/src/test/resources/cimp.schema.json new file mode 100644 index 000000000..024e5d3d4 --- /dev/null +++ b/app/src/test/resources/cimp.schema.json @@ -0,0 +1,129 @@ +{ + "$schema": "http://json-schema.org/draft/2019-09/schema#", + "$id": "https://cleaninsights.org/schemas/cimp.schema.json", + "title": "CleanInsights Matomo Proxy API", + "description": "The scheme defining the JSON API of the CleanInsights Matomo Proxy.", + "type": "object", + "properties": { + "idsite": { + "title": "Matomo Site ID", + "description": "The site ID used in the Matomo server which will collect and analyze the gathered data.", + "examples": [1, 2, 3, 345345], + "type": "integer", + "minimum": 1 + }, + "lang": { + "title": "HTTP Accept-Language Header", + "description": "A HTTP Accept-Language header. Matomo uses this value to detect the visitor's country.", + "examples": ["fr-CH, fr;q=0.9, en;q=0.8, de;q=0.7, *;q=0.5", "en", "de_AT"], + "type": "string" + }, + "ua": { + "title": "HTTP User-Agent Header", + "description": "A HTTP User-Agent. The user agent is used to detect the operating system and browser used.", + "examples": ["Mozilla/5.0 (Macintosh; Intel Mac OS X x.y; rv:42.0) Gecko/20100101 Firefox/42.0"], + "type": "string" + }, + "visits": { + "title": "Visit Measurements", + "description": "List of aggregated measurements to specific pages/scenes/activities.", + "type": "array", + "items": { + "title": "Visit Measurement", + "description": "A single aggregated measurement of repeated visits to a page/scene/activity.", + "type": "object", + "properties": { + "action_name": { + "title": "Visited Page/Scene/Activity Identifier", + "description": "Main identifier to track page/scene/activity visits in Matomo.", + "examples": ["For example, Help / Feedback will create the Action Feedback in the category Help."], + "type": "string", + "minLength": 1 + }, + "period_start": { + "title": "Start UNIX Epoch Timestamp", + "description": "Beginning of the aggregation period in seconds since 1970-01-01 00:00:00 UTC", + "examples": [1602499451], + "type": "integer" + }, + "period_end": { + "title": "End UNIX Epoch Timestamp", + "description": "End of the aggregation period in seconds since 1970-01-01 00:00:00 UTC", + "examples": [1602499451], + "type": "integer" + }, + "times": { + "title": "Number of Times Occurred", + "description": "The number of times the visit to this page/scene/activity happened during the specified period.", + "examples": [1, 2, 3, 26745], + "type": "integer", + "minimum": 1 + } + }, + "additionalProperties": false, + "required": ["action_name", "period_start", "period_end", "times"] + } + }, + "events": { + "title": "Event Measurement", + "description": "List of aggregated measurements of a specific event. (e.g. like a press of a button, picture taken etc.)", + "type": "array", + "items": { + "title": "Event Measurement", + "description": "A single aggregated measurement of a specific event.", + "type": "object", + "properties": { + "category": { + "title": "Event Category Identifier", + "description": "A category identifier for the Matomo event tracking: https://matomo.org/docs/event-tracking/", + "examples": ["Videos", "Music", "Games"], + "type": "string", + "minLength": 1 + }, + "action": { + "title": "Event Action Identifier", + "description": "An action identifier for the Matomo event tracking: https://matomo.org/docs/event-tracking/", + "examples": ["Play", "Pause", "Duration", "Add Playlist", "Downloaded", "Clicked"], + "type": "string", + "minLength": 1 + }, + "name": { + "title": "Event Name", + "description": "An action name for the Matomo event tracking: https://matomo.org/docs/event-tracking/", + "examples": ["Office Space", "Jonathan Coulton - Code Monkey", "kraftwerk-autobahn.mp3"], + "type": "string" + }, + "value": { + "title": "Event Value", + "description": "A value for the Matomo event tracking: https://matomo.org/docs/event-tracking/", + "examples": [0, 1, 1.5, 100, 56.44332], + "type": "number" + }, + "period_start": { + "title": "Start UNIX Epoch Timestamp", + "description": "Beginning of the aggregation period in seconds since 1970-01-01 00:00:00 UTC", + "examples": [1602499451], + "type": "integer" + }, + "period_end": { + "title": "End UNIX Epoch Timestamp", + "description": "End of the aggregation period in seconds since 1970-01-01 00:00:00 UTC", + "examples": [1602499451], + "type": "integer" + }, + "times": { + "title": "Number of Times Occurred", + "description": "The number of times the visit to this page/scene/activity happened during the specified period.", + "examples": [1, 2, 3, 26745], + "type": "integer", + "minimum": 1 + } + }, + "additionalProperties": false, + "required": ["category", "action","period_start", "period_end", "times"] + } + } + }, + "additionalProperties": false, + "required": ["idsite"] +} \ No newline at end of file diff --git a/app/src/test/resources/install_history_all b/app/src/test/resources/install_history_all new file mode 100644 index 000000000..7b0ef25e7 --- /dev/null +++ b/app/src/test/resources/install_history_all @@ -0,0 +1,1848 @@ +1555966687934,de.clemensbartz.android.launcher,19,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1555966687980,de.clemensbartz.android.launcher,19,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1555966691229,de.clemensbartz.android.launcher,19,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1555966694161,de.clemensbartz.android.launcher,19,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1555966697294,com.etesync.syncadapter,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1555966697318,com.etesync.syncadapter,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1555966701056,com.etesync.syncadapter,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1555966703320,cz.martykan.forecastie,33,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1555966703341,cz.martykan.forecastie,33,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1555966703343,cz.martykan.forecastie,33,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1555966708937,cz.martykan.forecastie,33,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1555966710848,cz.martykan.forecastie,33,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1555966714704,cz.martykan.forecastie,33,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1555966720270,cz.martykan.forecastie,33,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1555966745177,com.whatsapp,452742,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1555966745191,com.whatsapp,452742,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1555966756850,com.whatsapp,452742,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556096704575,com.termux,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556096704814,com.termux,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556096705784,com.termux,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556096706055,com.termux,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556096706965,com.termux,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556096707816,com.termux,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556302132868,info.guardianproject.locationprivacy,30,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556302134733,info.guardianproject.locationprivacy,30,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556302473840,info.guardianproject.locationprivacy,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556302475792,info.guardianproject.locationprivacy,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556527634895,org.torproject.torbrowser_alpha,2015615265,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556527689069,org.torproject.torbrowser_alpha,2015615265,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556551912064,com.etesync.syncadapter,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556551912953,im.vector.alpha,82801,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556551913780,com.etesync.syncadapter,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556551913840,im.vector.alpha,82801,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556551913841,com.etesync.syncadapter,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556551913995,im.vector.alpha,82801,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556551922371,com.etesync.syncadapter,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556551933265,im.vector.alpha,82801,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556551946601,im.vector.alpha,82801,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556551950569,im.vector.alpha,82801,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556551960602,im.vector.alpha,82801,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556551960947,im.vector.alpha,82801,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556552019566,net.osmand.plus,338,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556552019570,net.osmand.plus,338,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556552019572,net.osmand.plus,338,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556552052731,net.osmand.plus,338,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556610980980,de.thecode.android.tazreader,3090102,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556610988139,de.thecode.android.tazreader,3090102,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556737916327,org.leo.android.dict,57,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556737924086,com.whatsapp,452765,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556737924619,org.leo.android.dict,57,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556737932398,com.whatsapp,452765,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556800232207,com.etesync.syncadapter,70,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556800232239,com.etesync.syncadapter,70,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556800232243,com.etesync.syncadapter,70,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556800236450,com.etesync.syncadapter,70,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1556800238627,com.etesync.syncadapter,70,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556800241969,com.etesync.syncadapter,70,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556800244742,com.etesync.syncadapter,70,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1556800247578,com.etesync.syncadapter,70,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1557387133399,com.etesync.syncadapter,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1557387139035,com.etesync.syncadapter,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1557387178038,de.thecode.android.tazreader,3090202,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1557387184859,de.thecode.android.tazreader,3090202,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1557387348549,org.mozilla.firefox,2015627081,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1557387394796,org.mozilla.firefox,2015627081,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1557391384502,org.torproject.torbrowser_alpha,2015615273,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1557391391099,org.torproject.torbrowser_alpha,2015615273,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1557926191337,com.termux,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1557926191356,com.termux,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1557926191883,com.termux,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1557926192895,com.termux,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1557926193888,com.termux,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1557926194994,com.termux,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1557926211806,org.fdroid.fdroid,1006051,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1557942713501,com.whatsapp,452790,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1557942713503,com.whatsapp,452790,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1557942722675,com.whatsapp,452790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945620454,at.bitfire.davdroid,288,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945625010,at.bitfire.davdroid,288,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945629051,at.bitfire.davdroid,288,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945632252,at.bitfire.davdroid,288,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945647448,com.nextcloud.client,30060290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945647479,com.nextcloud.client,30060290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945647493,com.nextcloud.client,30060290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945647505,com.nextcloud.client,30060290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945660294,com.nextcloud.client,30060290,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945676831,de.thecode.android.tazreader,3090203,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945676835,de.thecode.android.tazreader,3090203,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945676837,de.thecode.android.tazreader,3090203,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945676838,de.thecode.android.tazreader,3090203,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945677871,com.termux,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945678164,com.termux,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945678170,com.termux,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945678184,com.termux,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945678198,com.nextcloud.client,30060290,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945694468,com.termux,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945694477,com.termux,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945699861,de.tap.easy_xkcd,159,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945699879,de.tap.easy_xkcd,159,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945699882,de.tap.easy_xkcd,159,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945699891,de.tap.easy_xkcd,159,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945703369,de.tap.easy_xkcd,159,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945707620,de.tap.easy_xkcd,159,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945714000,de.tap.easy_xkcd,159,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945720288,de.tap.easy_xkcd,159,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945722084,org.mozilla.firefox,2015628937,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945722091,de.tap.easy_xkcd,159,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945724493,de.tap.easy_xkcd,159,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945725196,org.fdroid.fdroid,1007000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558945727233,org.mozilla.firefox,2015628937,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945728330,org.mozilla.firefox,2015628937,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945732797,org.fdroid.fdroid,1007000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558945736876,org.fdroid.fdroid,1007000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1558961740920,org.torproject.torbrowser_alpha,2015620177,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558961740961,org.torproject.torbrowser_alpha,2015620177,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558961744723,org.torproject.torbrowser_alpha,2015620177,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1558961748810,com.whatsapp,452812,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1558961748811,com.whatsapp,452812,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081168448,org.shadowice.flocke.andotp,23,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081168456,org.shadowice.flocke.andotp,23,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081173094,org.shadowice.flocke.andotp,23,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081173496,org.shadowice.flocke.andotp,23,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081177856,org.shadowice.flocke.andotp,23,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081178151,de.danoeh.antennapod,1070296,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081178170,de.danoeh.antennapod,1070296,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081178217,de.danoeh.antennapod,1070296,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081181961,de.danoeh.antennapod,1070296,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081185581,com.etesync.syncadapter,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081185603,com.etesync.syncadapter,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081185671,com.etesync.syncadapter,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081187333,org.gateshipone.malp,29,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081187343,org.gateshipone.malp,29,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081187375,org.gateshipone.malp,29,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081189843,com.etesync.syncadapter,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081190568,org.schabi.newpipe,740,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081190886,org.schabi.newpipe,740,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081190888,org.schabi.newpipe,740,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081191173,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081191175,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081191182,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560081194916,org.schabi.newpipe,740,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081198964,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081204396,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081207298,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081209638,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081212092,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081214508,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081217819,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081221017,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081224108,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081225203,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081226167,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081227196,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560081227446,com.termux,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1560266207303,org.thoughtcrime.securesms,4945,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1560266217119,org.thoughtcrime.securesms,4945,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638254778,org.mozilla.firefox,2015635153,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638254783,org.mozilla.firefox,2015635153,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638263810,at.bitfire.davdroid,291,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638263812,at.bitfire.davdroid,291,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638263968,org.mozilla.firefox,2015635153,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638263996,at.bitfire.davdroid,291,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638264020,com.etesync.syncadapter,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638264022,com.etesync.syncadapter,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638264280,com.etesync.syncadapter,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638264418,org.gateshipone.malp,30,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638264419,org.gateshipone.malp,30,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638264420,org.gateshipone.malp,30,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638301156,com.nextcloud.client,30070053,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638301158,com.nextcloud.client,30070053,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638301171,com.nextcloud.client,30070053,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638301613,at.bitfire.davdroid,291,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638301620,com.etesync.syncadapter,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638301621,org.gateshipone.malp,30,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638302228,com.nextcloud.client,30070053,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638302252,org.mozilla.firefox,2015635153,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638367684,org.torproject.torbrowser_alpha,2015620193,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638367691,org.torproject.torbrowser_alpha,2015620193,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638404825,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638404828,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1561638428248,org.gateshipone.malp,30,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638516976,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638521426,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638526028,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638529584,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638532622,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638535258,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638537366,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638539455,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638541641,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638558901,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638565086,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638571766,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638575040,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638578592,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638581286,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638589443,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638594398,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638598187,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638602044,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638608399,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638613867,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1561638614188,com.whatsapp,452824,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1562747060876,org.fdroid.fdroid,1007050,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562747657694,org.adaway,40207,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562747657752,com.etesync.syncadapter,75,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562747657770,com.whatsapp,452843,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562747662879,com.whatsapp,452843,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1562834694644,org.mozilla.firefox,2015638577,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834694649,org.mozilla.firefox,2015638577,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834694651,org.mozilla.firefox,2015638577,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834694652,org.mozilla.firefox,2015638577,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834717027,org.mozilla.firefox,2015638577,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1562834790762,org.thoughtcrime.securesms,5075,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834790764,org.thoughtcrime.securesms,5075,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834790766,org.thoughtcrime.securesms,5075,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834790768,org.thoughtcrime.securesms,5075,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834804411,com.etesync.syncadapter,76,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834804419,com.etesync.syncadapter,76,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834804430,com.etesync.syncadapter,76,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834804439,com.etesync.syncadapter,76,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562834810975,com.etesync.syncadapter,76,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1562834813717,com.etesync.syncadapter,76,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1562834816728,com.etesync.syncadapter,76,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1562834822530,com.etesync.syncadapter,76,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1562834822638,com.etesync.syncadapter,76,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1562848684836,jp.takke.cpustats,17,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1562848687244,jp.takke.cpustats,17,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411168998,at.bitfire.davdroid,297,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411169008,at.bitfire.davdroid,297,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411169012,at.bitfire.davdroid,297,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411169017,at.bitfire.davdroid,297,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411175032,at.bitfire.davdroid,297,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411179844,at.bitfire.davdroid,297,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411183953,at.bitfire.davdroid,297,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411188053,at.bitfire.davdroid,297,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411192527,at.bitfire.davdroid,297,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411201694,com.etesync.syncadapter,78,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411201696,com.etesync.syncadapter,78,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411201704,com.etesync.syncadapter,78,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411201706,com.etesync.syncadapter,78,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411201711,com.etesync.syncadapter,78,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411209251,com.etesync.syncadapter,78,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411214570,com.etesync.syncadapter,78,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411218633,com.etesync.syncadapter,78,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411223109,org.gateshipone.malp,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411223114,org.gateshipone.malp,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411223133,org.gateshipone.malp,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411223138,org.gateshipone.malp,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411223163,org.gateshipone.malp,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411223169,com.etesync.syncadapter,78,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411228045,org.gateshipone.malp,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1564411228051,org.gateshipone.malp,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411231798,org.gateshipone.malp,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411235604,org.gateshipone.malp,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411238965,org.gateshipone.malp,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411242969,org.gateshipone.malp,31,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411296255,com.nextcloud.client,30070090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411296259,com.nextcloud.client,30070090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411296261,com.nextcloud.client,30070090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411296262,com.nextcloud.client,30070090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411296264,com.nextcloud.client,30070090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411305850,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411305911,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411305920,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411305926,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411305943,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411316202,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411333081,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411338008,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411346015,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411353451,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411359723,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411359736,it.niedermann.owncloud.notes,44,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411624794,net.osmand.plus,345,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411624798,net.osmand.plus,345,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411624799,net.osmand.plus,345,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411624800,net.osmand.plus,345,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411624802,net.osmand.plus,345,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411632968,net.osmand.plus,345,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1564411677949,net.osmand.plus,345,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411690593,net.osmand.plus,345,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411702837,net.osmand.plus,345,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411904264,com.whatsapp,452877,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411904271,com.whatsapp,452877,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411904282,com.whatsapp,452877,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1564411916073,com.whatsapp,452877,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411924540,com.whatsapp,452877,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1564411930962,com.whatsapp,452877,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565069783511,org.mozilla.klar,230,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069783561,org.mozilla.klar,230,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069783563,org.mozilla.klar,230,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069783566,org.mozilla.klar,230,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069788916,org.mozilla.klar,230,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1565069789719,org.mozilla.klar,230,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1565069805268,org.adaway,40208,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069805276,org.adaway,40208,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069805279,org.adaway,40208,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069805285,org.adaway,40208,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069808662,org.adaway,40208,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1565069808674,org.adaway,40208,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565069814152,org.adaway,40208,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565069819476,org.adaway,40208,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565069820313,com.etesync.syncadapter,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069820319,com.etesync.syncadapter,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069820326,com.etesync.syncadapter,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069820328,com.etesync.syncadapter,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069823046,com.etesync.syncadapter,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1565069823058,com.etesync.syncadapter,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565069829628,com.etesync.syncadapter,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565069834282,com.etesync.syncadapter,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565069838441,com.etesync.syncadapter,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565069847623,com.nextcloud.client,30070190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069847627,com.nextcloud.client,30070190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069847634,com.nextcloud.client,30070190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069847637,com.nextcloud.client,30070190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565069858719,com.nextcloud.client,30070190,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565069871970,org.fdroid.fdroid,1007051,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565254827118,org.thoughtcrime.securesms,5155,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565254827171,org.thoughtcrime.securesms,5155,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565254827172,org.thoughtcrime.securesms,5155,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565254827173,org.thoughtcrime.securesms,5155,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565254846083,org.thoughtcrime.securesms,5155,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565254850381,com.etesync.syncadapter,80,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565254850400,com.etesync.syncadapter,80,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565254850408,com.etesync.syncadapter,80,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565254850415,com.etesync.syncadapter,80,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565254856159,com.etesync.syncadapter,80,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565254860162,com.etesync.syncadapter,80,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565254864071,com.etesync.syncadapter,80,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565254867288,com.etesync.syncadapter,80,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565255554762,com.termux,73,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565255555779,com.termux,73,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565255733739,net.osmand.plus,346,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565255733751,net.osmand.plus,346,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565255767969,net.osmand.plus,346,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565437679695,de.tap.easy_xkcd,160,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565437686643,de.tap.easy_xkcd,160,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565437697805,com.etesync.syncadapter,81,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565437702610,com.etesync.syncadapter,81,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565437792291,com.whatsapp,452893,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565437802315,com.whatsapp,452893,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565787151708,org.coolreader,2091,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565787155527,org.coolreader,2091,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1565788043698,org.geometerplus.zlibrary.ui.android,2050920,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1565788047101,org.geometerplus.zlibrary.ui.android,2050920,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372696676,at.bitfire.davdroid,298,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566372696815,at.bitfire.davdroid,298,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566372696818,at.bitfire.davdroid,298,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566372700917,de.tap.easy_xkcd,161,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566372700933,de.tap.easy_xkcd,161,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566372700950,de.tap.easy_xkcd,161,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566372706297,at.bitfire.davdroid,298,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566372706390,de.tap.easy_xkcd,161,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566372711727,at.bitfire.davdroid,298,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372725429,de.tap.easy_xkcd,161,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566372745920,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566372745922,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566372764022,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372767301,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372772364,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372778299,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372785743,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372791712,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372794877,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372800042,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372807545,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372811905,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566372812183,org.mozilla.firefox,2015646009,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896524267,com.etesync.syncadapter,82,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896524272,com.etesync.syncadapter,82,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896524878,com.etesync.syncadapter,82,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896525821,org.schabi.newpipe,760,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896525840,org.schabi.newpipe,760,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896525841,org.schabi.newpipe,760,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896529328,com.nextcloud.client,30070290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896529347,com.nextcloud.client,30070290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896529377,com.nextcloud.client,30070290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896534588,org.smssecure.smssecure,144,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896534604,org.smssecure.smssecure,144,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896534607,org.smssecure.smssecure,144,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896534619,org.schabi.newpipe,760,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896540055,org.schabi.newpipe,760,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896540064,com.nextcloud.client,30070290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896540081,org.smssecure.smssecure,144,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896540102,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896540136,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896540246,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896540412,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1566896540413,com.nextcloud.client,30070290,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896546852,org.smssecure.smssecure,144,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896555624,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896558287,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896563911,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896569365,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896575865,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896578940,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896582396,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896585613,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896588909,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896595423,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896598476,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896599399,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896600255,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896601342,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896602338,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1566896602745,com.termux,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697886744,at.bitfire.davdroid,299,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697886854,at.bitfire.davdroid,299,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697887099,at.bitfire.davdroid,299,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697891943,com.etesync.syncadapter,83,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697891951,com.etesync.syncadapter,83,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697891957,com.etesync.syncadapter,83,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697897331,com.etesync.syncadapter,83,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697899230,at.bitfire.davdroid,299,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697899370,com.etesync.syncadapter,83,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697906721,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697906728,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697906738,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697906746,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697906754,at.bitfire.davdroid,299,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697912896,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1567697912997,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697920375,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697923339,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697927003,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697933029,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697939110,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697943708,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697948019,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697948320,org.smssecure.smssecure,145,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1567697971581,org.mozilla.firefox,2015649065,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1567697987778,org.mozilla.firefox,2015649065,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723494330,org.adaway,40209,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723496608,org.adaway,40209,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723500143,org.adaway,40209,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723500197,com.etesync.syncadapter,85,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723500205,com.etesync.syncadapter,85,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723503561,com.etesync.syncadapter,85,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723510109,com.etesync.syncadapter,85,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723510667,com.etesync.syncadapter,85,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723515986,com.etesync.syncadapter,85,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723521676,com.etesync.syncadapter,85,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723596006,net.osmand.plus,348,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723596023,net.osmand.plus,348,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723596042,net.osmand.plus,348,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723596056,net.osmand.plus,348,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723621576,im.vector.alpha,10090400,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723621738,im.vector.alpha,10090400,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723621790,im.vector.alpha,10090400,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723621809,im.vector.alpha,10090400,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723628515,com.termux,75,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723628526,com.termux,75,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723628552,com.termux,75,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723628554,com.termux,75,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723655384,com.whatsapp,452954,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723655386,com.whatsapp,452954,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723676247,com.whatsapp,452954,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723728192,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568723737847,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723739271,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723743495,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723744741,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723746390,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723755256,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723761436,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723767592,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723774834,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723780521,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568723780876,org.mozilla.firefox,2015651761,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1568810470410,org.thoughtcrime.securesms,5285,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1568810481638,org.thoughtcrime.securesms,5285,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1570114062322,at.bitfire.davdroid,302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114067140,de.tap.easy_xkcd,162,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114068898,at.bitfire.davdroid,302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114070236,de.tap.easy_xkcd,162,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114070380,de.clemensbartz.android.launcher,20,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114070437,de.clemensbartz.android.launcher,20,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114072538,com.etesync.syncadapter,87,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114072547,com.etesync.syncadapter,87,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114074394,at.bitfire.davdroid,302,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1570114077429,org.schabi.newpipe,780,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114077480,org.schabi.newpipe,780,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114081652,com.etesync.syncadapter,87,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1570114086689,com.nextcloud.client,30080090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114086757,com.nextcloud.client,30080090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114090108,de.clemensbartz.android.launcher,20,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114090370,org.schabi.newpipe,780,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1570114090695,com.etesync.syncadapter,87,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114090838,com.nextcloud.client,30080090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114092590,it.niedermann.owncloud.notes,47,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114092804,it.niedermann.owncloud.notes,47,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114092807,it.niedermann.owncloud.notes,47,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114097452,de.clemensbartz.android.launcher,20,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1570114102027,com.nextcloud.client,30080090,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1570114108499,it.niedermann.owncloud.notes,47,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1570114108958,de.clemensbartz.android.launcher,20,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114108989,com.etesync.syncadapter,87,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114109000,org.schabi.newpipe,780,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114109003,com.nextcloud.client,30080090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1570114113949,org.schabi.newpipe,780,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521863475,org.shadowice.flocke.andotp,26,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521863566,org.shadowice.flocke.andotp,26,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521863567,org.shadowice.flocke.andotp,26,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521863568,org.shadowice.flocke.andotp,26,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521869606,org.shadowice.flocke.andotp,26,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521873037,org.shadowice.flocke.andotp,26,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521876308,org.shadowice.flocke.andotp,26,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521879319,org.shadowice.flocke.andotp,26,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521893016,de.danoeh.antennapod,1070397,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521893017,de.danoeh.antennapod,1070397,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521893018,de.danoeh.antennapod,1070397,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521893019,de.danoeh.antennapod,1070397,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521901739,de.danoeh.antennapod,1070397,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521905849,de.danoeh.antennapod,1070397,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521909820,de.danoeh.antennapod,1070397,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521913505,de.danoeh.antennapod,1070397,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521979298,at.bitfire.davdroid,308,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521979299,at.bitfire.davdroid,308,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521979300,at.bitfire.davdroid,308,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521979302,at.bitfire.davdroid,308,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572521987216,at.bitfire.davdroid,308,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521990251,at.bitfire.davdroid,308,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521994618,at.bitfire.davdroid,308,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572521998232,at.bitfire.davdroid,308,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572687373471,de.tap.easy_xkcd,163,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572687376133,com.etesync.syncadapter,90,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572687380552,com.nextcloud.client,30080190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572687383943,it.niedermann.owncloud.notes,49,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572687386629,de.schildbach.oeffi,664,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572687387140,it.niedermann.owncloud.notes,49,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572687393050,de.schildbach.oeffi,664,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572687393467,im.vector.alpha,10090800,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572687410081,com.termux,76,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1572687427479,im.vector.alpha,10090800,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1572687444215,org.mozilla.firefox,2015658113,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1574685854301,org.adaway,40300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1574685854381,org.adaway,40300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1574685854383,org.adaway,40300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1574685854385,org.adaway,40300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1574685860745,org.adaway,40300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1574685863904,org.adaway,40300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1574685867997,org.adaway,40300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1574685869879,org.adaway,40300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1574686394210,org.mozilla.firefox,2015663449,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1574686418213,org.mozilla.firefox,2015663449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1574686459071,org.jitsi.meet,190400,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1574686474016,org.jitsi.meet,190400,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662202468,com.ichi2.anki,20901300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662202533,com.ichi2.anki,20901300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662205716,at.bitfire.davdroid,315,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662205736,at.bitfire.davdroid,315,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662211520,com.ichi2.anki,20901300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662211707,at.bitfire.davdroid,315,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662211708,com.etesync.syncadapter,96,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662211709,com.etesync.syncadapter,96,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662211710,com.etesync.syncadapter,96,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662212793,net.gaast.giggity,513,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662212821,net.gaast.giggity,513,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662212833,net.gaast.giggity,513,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662217807,org.schabi.newpipe,790,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662217832,org.schabi.newpipe,790,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662217833,org.schabi.newpipe,790,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662222283,at.bitfire.davdroid,315,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662223707,com.nextcloud.client,30090290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662223734,com.nextcloud.client,30090290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662223743,com.nextcloud.client,30090290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662226131,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662226158,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662226172,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662253835,com.nextcloud.client,30090290,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662261062,net.osmand.plus,355,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662261086,net.osmand.plus,355,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662261148,net.osmand.plus,355,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662268199,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662269696,im.vector.alpha,10090900,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662269697,im.vector.alpha,10090900,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662270405,im.vector.alpha,10090900,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662285900,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662287817,com.termux,84,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662287825,com.termux,84,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662287837,com.termux,84,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662293174,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662301875,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662312169,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662316878,org.mozilla.firefox,2015666049,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662325275,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662328613,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662355073,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662360979,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662361184,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662361209,net.gaast.giggity,513,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662361250,org.schabi.newpipe,790,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662361294,com.nextcloud.client,30090290,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662361320,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662361327,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662361334,net.osmand.plus,355,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662361339,im.vector.alpha,10090900,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662361396,com.termux,84,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662361397,org.mozilla.firefox,2015666049,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662361399,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576662372616,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662394296,net.osmand.plus,355,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662416555,net.osmand.plus,355,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662442391,im.vector.alpha,10090900,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1576662443216,im.vector.alpha,10090900,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662455423,com.termux,84,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662517450,com.termux,84,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662552977,com.termux,84,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662555763,com.termux,84,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662660552,de.schildbach.oeffi,670,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662782440,net.osmand.plus,355,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662801082,com.termux,84,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662808579,org.mozilla.firefox,2015666049,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662810174,org.mozilla.firefox,2015666049,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662827770,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662833697,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662838966,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662853888,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662862051,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662872367,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662888376,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662898706,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662899991,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662908188,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662917905,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662918200,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576662918480,org.thoughtcrime.securesms,5790,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576674704676,cityfreqs.com.pilfershushjammer,29,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576674707453,cityfreqs.com.pilfershushjammer,29,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576674942842,cityfreqs.com.pilfershushjammer,29,org.fdroid.fdroid.installer.Installer.action.UNINSTALL_STARTED +1576674943206,cityfreqs.com.pilfershushjammer,29,org.fdroid.fdroid.installer.Installer.action.UNINSTALL_COMPLETE +1576683534919,com.whatsapp,453121,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576683537752,com.whatsapp,453121,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576782027419,org.fdroid.fdroid,1008000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576854862173,it.niedermann.owncloud.notes,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576854862209,it.niedermann.owncloud.notes,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576854862213,it.niedermann.owncloud.notes,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576854862268,it.niedermann.owncloud.notes,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1576854867208,it.niedermann.owncloud.notes,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576854871179,it.niedermann.owncloud.notes,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576854874609,it.niedermann.owncloud.notes,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1576854877772,it.niedermann.owncloud.notes,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1577021998493,com.chessclock.android,12,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1577021999961,com.chessclock.android,12,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578414791007,de.markusfisch.android.binaryeye,48,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578414794077,de.markusfisch.android.binaryeye,48,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578825922434,org.adaway,40302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825922449,org.adaway,40302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825922450,org.adaway,40302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825927288,org.adaway,40302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825927714,de.markusfisch.android.binaryeye,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825927716,de.markusfisch.android.binaryeye,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825927717,de.markusfisch.android.binaryeye,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825927723,de.markusfisch.android.binaryeye,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825935114,de.markusfisch.android.binaryeye,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578825935130,de.markusfisch.android.binaryeye,51,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578825937742,at.bitfire.davdroid,328,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825937745,at.bitfire.davdroid,328,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825937752,at.bitfire.davdroid,328,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825937759,at.bitfire.davdroid,328,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825939747,at.bitfire.davdroid,328,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1578825939749,at.bitfire.davdroid,328,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578825946400,com.etesync.syncadapter,97,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825946402,com.etesync.syncadapter,97,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825946428,com.etesync.syncadapter,97,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825946429,com.etesync.syncadapter,97,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825948066,net.gaast.giggity,514,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825948068,net.gaast.giggity,514,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825948070,net.gaast.giggity,514,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825948073,net.gaast.giggity,514,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825954152,com.etesync.syncadapter,97,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578825956618,org.schabi.newpipe,800,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825956620,org.schabi.newpipe,800,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825956621,org.schabi.newpipe,800,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825956622,org.schabi.newpipe,800,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825959803,com.etesync.syncadapter,97,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578825961545,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825961555,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825961565,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825961585,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825963453,com.etesync.syncadapter,97,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578825964397,de.schildbach.oeffi,672,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825964419,de.schildbach.oeffi,672,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825964448,de.schildbach.oeffi,672,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825964467,de.schildbach.oeffi,672,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825966377,org.schabi.newpipe,800,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578825974279,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578825981875,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578825987802,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578825991779,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578825995871,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826001765,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826009044,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826010187,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826011354,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826012685,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826014035,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826018626,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826026349,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826030758,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1578826032070,it.niedermann.owncloud.notes,67,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826041182,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826054555,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826058408,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826063489,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826068199,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826072479,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826074407,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826076063,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826077538,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826081724,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826087205,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826087457,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1578826087738,org.mozilla.firefox,2015674281,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1579703725333,info.dvkr.screenstream,30302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1579703728501,info.dvkr.screenstream,30302,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548488784,org.mozilla.firefox,2015676153,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548488899,org.mozilla.firefox,2015676153,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548488978,org.mozilla.firefox,2015676153,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489010,org.mozilla.firefox,2015676153,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489011,de.danoeh.antennapod,1080095,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489012,de.danoeh.antennapod,1080095,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489013,de.danoeh.antennapod,1080095,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489014,de.danoeh.antennapod,1080095,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489015,at.bitfire.davdroid,329,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489016,at.bitfire.davdroid,329,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489062,at.bitfire.davdroid,329,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489064,at.bitfire.davdroid,329,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489066,com.etesync.syncadapter,99,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489067,com.etesync.syncadapter,99,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489072,com.etesync.syncadapter,99,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489073,com.etesync.syncadapter,99,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489075,net.gaast.giggity,515,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489076,net.gaast.giggity,515,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489079,net.gaast.giggity,515,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489084,net.gaast.giggity,515,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489093,org.schabi.newpipe,820,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489128,org.schabi.newpipe,820,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489175,org.schabi.newpipe,820,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489183,org.schabi.newpipe,820,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489185,it.niedermann.owncloud.notes,75,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489186,it.niedermann.owncloud.notes,75,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489194,it.niedermann.owncloud.notes,75,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548489196,it.niedermann.owncloud.notes,75,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548505251,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548505324,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548505325,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548505328,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548526729,org.mozilla.firefox,2015676153,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1580548527011,org.mozilla.firefox,2015676153,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548557342,de.danoeh.antennapod,1080095,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548579010,com.etesync.syncadapter,99,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548594515,org.schabi.newpipe,820,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548614217,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548640745,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548651928,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548657843,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548667211,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548672804,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548677605,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548683679,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548697568,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548729217,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548757821,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548762025,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548765798,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548777884,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548778508,at.bitfire.davdroid,329,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548778541,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548778556,com.etesync.syncadapter,99,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548778560,net.gaast.giggity,515,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548778582,org.schabi.newpipe,820,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548778606,it.niedermann.owncloud.notes,75,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548778613,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1580548784122,at.bitfire.davdroid,329,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548795216,it.niedermann.owncloud.notes,75,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548803715,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548806906,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548811851,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548813339,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548814398,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548815401,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548816433,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548823007,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548827056,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548830588,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548835590,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548839271,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548845402,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548856739,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548922033,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548962548,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548963804,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548965433,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548967307,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548975490,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548988471,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548989632,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548993575,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580548997746,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580549000014,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1580549000368,com.termux,88,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778114756,com.ichi2.anki,20903300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778116257,com.ichi2.anki,20903300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778118579,com.ichi2.anki,20903300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778121730,com.etesync.syncadapter,100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778121737,com.etesync.syncadapter,100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778121738,com.etesync.syncadapter,100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778125197,com.ichi2.anki,20903300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778125701,com.etesync.syncadapter,100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778125876,net.gaast.giggity,516,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778125924,net.gaast.giggity,516,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778125949,net.gaast.giggity,516,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778126060,net.gaast.giggity,516,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778132903,com.etesync.syncadapter,100,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778132947,com.nextcloud.client,30100190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778132948,com.nextcloud.client,30100190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778132949,com.nextcloud.client,30100190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778132951,com.nextcloud.client,30100190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778137332,it.niedermann.owncloud.notes,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778137359,it.niedermann.owncloud.notes,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778137423,it.niedermann.owncloud.notes,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778137432,it.niedermann.owncloud.notes,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778162519,com.nextcloud.client,30100190,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778163111,com.termux,92,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778163121,com.termux,92,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778163131,com.termux,92,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778163134,com.termux,92,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778186987,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778187072,it.niedermann.owncloud.notes,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778205987,com.termux,92,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778222563,com.termux,92,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778234999,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778240995,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778246561,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778248076,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778249156,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778256121,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778265700,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778278398,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778278428,com.nextcloud.client,30100190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778278465,it.niedermann.owncloud.notes,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778278473,com.termux,92,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778278475,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778288768,it.niedermann.owncloud.notes,79,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778304175,com.termux,92,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778310978,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778321360,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778325595,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778327039,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778328491,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778329974,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778331168,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778338710,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778346726,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778350432,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1581778357317,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778360524,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778370789,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778371042,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778371395,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1581778379874,org.mozilla.firefox,2015679449,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919115506,com.ichi2.anki,20904300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919115513,com.ichi2.anki,20904300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919115515,com.ichi2.anki,20904300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919115518,com.ichi2.anki,20904300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919129349,com.ichi2.anki,20904300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919137067,com.ichi2.anki,20904300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919141587,com.ichi2.anki,20904300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919146435,com.ichi2.anki,20904300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919170598,de.danoeh.antennapod,1080195,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919170615,de.danoeh.antennapod,1080195,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919170630,de.danoeh.antennapod,1080195,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919170633,de.danoeh.antennapod,1080195,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919180705,de.danoeh.antennapod,1080195,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919185366,de.danoeh.antennapod,1080195,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919192401,de.danoeh.antennapod,1080195,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919197383,de.danoeh.antennapod,1080195,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919203722,com.etesync.syncadapter,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919203725,com.etesync.syncadapter,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919203726,com.etesync.syncadapter,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919203727,com.etesync.syncadapter,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919204249,com.etesync.syncadapter,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1582919212442,com.etesync.syncadapter,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919216325,com.etesync.syncadapter,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919222052,com.etesync.syncadapter,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919225405,org.schabi.newpipe,840,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919225406,org.schabi.newpipe,840,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919225407,org.schabi.newpipe,840,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919225408,org.schabi.newpipe,840,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919234521,org.schabi.newpipe,840,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919237820,it.niedermann.owncloud.notes,81,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919237824,it.niedermann.owncloud.notes,81,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919237825,it.niedermann.owncloud.notes,81,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919237826,it.niedermann.owncloud.notes,81,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919241282,it.niedermann.owncloud.notes,81,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919246340,it.niedermann.owncloud.notes,81,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919247524,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919247567,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919247568,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919247570,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919250743,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919256431,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919262061,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919271022,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919273294,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919276293,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919278781,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919281623,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919281851,info.dvkr.screenstream,30400,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1582919510679,com.whatsapp,453191,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919510682,com.whatsapp,453191,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1582919524591,com.whatsapp,453191,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1583926339897,org.fdroid.fdroid,1008001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585748182352,org.shadowice.flocke.andotp,28,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585748182443,org.shadowice.flocke.andotp,28,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585748182559,org.shadowice.flocke.andotp,28,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585748182561,org.shadowice.flocke.andotp,28,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585748424051,com.ichi2.anki,20905300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585748461897,com.ichi2.anki,20905300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585750197792,com.whatsapp,453261,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585750208869,com.whatsapp,453261,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585810479812,org.mozilla.firefox,2015684817,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479824,de.markusfisch.android.binaryeye,57,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479829,at.bitfire.davdroid,334,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479839,net.gaast.giggity,517,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479844,org.gateshipone.malp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479847,com.nextcloud.client,30110090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479849,it.niedermann.owncloud.notes,2011003,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479865,net.osmand.plus,363,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479868,im.vector.alpha,10090910,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479872,info.dvkr.screenstream,30403,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479948,org.mozilla.firefox,2015684817,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479951,de.markusfisch.android.binaryeye,57,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479970,at.bitfire.davdroid,334,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479973,net.gaast.giggity,517,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479979,org.gateshipone.malp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479989,com.nextcloud.client,30110090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479991,it.niedermann.owncloud.notes,2011003,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810479999,net.osmand.plus,363,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480003,im.vector.alpha,10090910,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480005,info.dvkr.screenstream,30403,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480014,org.mozilla.firefox,2015684817,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480019,de.markusfisch.android.binaryeye,57,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480021,at.bitfire.davdroid,334,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480022,net.gaast.giggity,517,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480023,org.gateshipone.malp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480026,com.nextcloud.client,30110090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480032,it.niedermann.owncloud.notes,2011003,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480038,net.osmand.plus,363,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480041,im.vector.alpha,10090910,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480043,info.dvkr.screenstream,30403,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480056,de.markusfisch.android.binaryeye,57,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480057,at.bitfire.davdroid,334,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480058,net.gaast.giggity,517,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480059,org.gateshipone.malp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480061,com.nextcloud.client,30110090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480062,it.niedermann.owncloud.notes,2011003,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480074,net.osmand.plus,363,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480078,im.vector.alpha,10090910,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480082,info.dvkr.screenstream,30403,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810480084,org.mozilla.firefox,2015684817,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810542729,org.jitsi.meet,201000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810542799,org.jitsi.meet,201000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810542800,org.jitsi.meet,201000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810542801,org.jitsi.meet,201000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810542803,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810542804,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810542805,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810542806,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585810788617,org.gateshipone.malp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585810799718,it.niedermann.owncloud.notes,2011003,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585810826884,net.osmand.plus,363,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585810833976,net.osmand.plus,363,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585810846503,net.osmand.plus,363,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585810852608,im.vector.alpha,10090910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585810872881,org.mozilla.firefox,2015684817,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585810923293,it.niedermann.owncloud.notes,2011003,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585810964304,it.niedermann.owncloud.notes,2011003,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811074594,org.gateshipone.malp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811190154,net.osmand.plus,363,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811202305,im.vector.alpha,10090910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811234088,org.jitsi.meet,201000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811246705,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811249580,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811254859,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811257966,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811261878,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811263236,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811271362,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811282794,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811287452,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811302035,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811312626,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811315118,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811322625,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811328175,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811330807,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811337067,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811339221,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811342774,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811344010,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811348453,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811357554,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811361527,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811372337,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811387490,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811389698,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811407059,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811418137,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811424751,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811427632,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811430682,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811432114,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811435407,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811445618,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811454955,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811466362,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811477833,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811480101,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811486204,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811490258,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811493749,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811496827,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811499619,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811505775,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811509225,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811512797,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585811521423,org.schabi.newpipe,910,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585987425648,com.whatsapp,453352,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585987425721,com.whatsapp,453352,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1585987434635,com.whatsapp,453352,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1585987441239,com.whatsapp,453352,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585456465,com.ichi2.anki,20906300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585456481,com.ichi2.anki,20906300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585456484,com.ichi2.anki,20906300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585456489,com.ichi2.anki,20906300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585466424,com.ichi2.anki,20906300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585470948,com.ichi2.anki,20906300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585471885,de.markusfisch.android.binaryeye,60,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585471889,de.markusfisch.android.binaryeye,60,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585471890,de.markusfisch.android.binaryeye,60,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585471896,de.markusfisch.android.binaryeye,60,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585476691,at.bitfire.davdroid,300000004,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585476716,at.bitfire.davdroid,300000004,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585476718,at.bitfire.davdroid,300000004,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585476719,at.bitfire.davdroid,300000004,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585482661,at.bitfire.davdroid,300000004,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585484269,de.tap.easy_xkcd,164,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585484300,de.tap.easy_xkcd,164,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585484315,de.tap.easy_xkcd,164,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585484324,de.tap.easy_xkcd,164,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585498414,at.bitfire.davdroid,300000004,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585498477,org.jitsi.meet,202010,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585498503,org.jitsi.meet,202010,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585498561,org.jitsi.meet,202010,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585498569,org.jitsi.meet,202010,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585503996,org.schabi.newpipe,920,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585504011,org.schabi.newpipe,920,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585504012,org.schabi.newpipe,920,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585504013,org.schabi.newpipe,920,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585509882,de.tap.easy_xkcd,164,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585513664,com.nextcloud.client,30110190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585513669,com.nextcloud.client,30110190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585513773,com.nextcloud.client,30110190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585513823,com.nextcloud.client,30110190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585516612,org.jitsi.meet,202010,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1588585516631,it.niedermann.owncloud.notes,2011012,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585516717,it.niedermann.owncloud.notes,2011012,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585516736,it.niedermann.owncloud.notes,2011012,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585516771,it.niedermann.owncloud.notes,2011012,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585519645,info.dvkr.screenstream,30408,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585519656,info.dvkr.screenstream,30408,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585519657,info.dvkr.screenstream,30408,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585519664,info.dvkr.screenstream,30408,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585523629,org.jitsi.meet,202010,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585539454,org.jitsi.meet,202010,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585547694,com.termux,94,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585547697,com.termux,94,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585547698,com.termux,94,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585547699,com.termux,94,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585559030,com.nextcloud.client,30110190,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585574428,it.niedermann.owncloud.notes,2011012,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585598833,org.mozilla.firefox,2015690869,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585599340,com.termux,94,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585614482,com.termux,94,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1588585618723,com.termux,94,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1588585621203,com.termux,94,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585622861,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588585669358,org.mozilla.firefox,2015690869,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585669382,org.mozilla.firefox,2015690869,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1588585678499,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585687814,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1588585695767,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585780891,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585836713,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585840313,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585844482,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585848466,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585852286,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585859575,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585867948,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585878264,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585885942,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585896591,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585905694,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585912649,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585919123,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585923916,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585927339,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585933127,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585936162,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585939596,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585940885,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585942125,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585946647,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585950812,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588585951144,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1588586046236,org.fdroid.fdroid,1008050,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588586108179,org.mozilla.firefox,2015690869,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588586108204,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588586122562,org.mozilla.firefox,2015690869,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1588586130279,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1588586130286,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588586136920,org.mozilla.firefox,2015690869,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1588586139479,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1588586148406,org.mozilla.firefox,2015690869,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592330711598,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330711601,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330711603,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330714394,org.adaway,40304,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330714397,org.adaway,40304,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330714400,org.adaway,40304,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330714401,org.adaway,40304,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330714402,org.adaway,40304,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727611,org.shadowice.flocke.andotp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727743,org.shadowice.flocke.andotp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727746,org.shadowice.flocke.andotp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727755,org.shadowice.flocke.andotp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727763,org.shadowice.flocke.andotp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727764,com.ichi2.anki,21102300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727766,com.ichi2.anki,21102300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727777,com.ichi2.anki,21102300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727784,com.ichi2.anki,21102300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727818,com.ichi2.anki,21102300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727836,de.markusfisch.android.binaryeye,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727838,de.markusfisch.android.binaryeye,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727847,de.markusfisch.android.binaryeye,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727851,de.markusfisch.android.binaryeye,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330727857,de.markusfisch.android.binaryeye,68,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330733259,at.bitfire.davdroid,301000012,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330733260,at.bitfire.davdroid,301000012,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330733262,at.bitfire.davdroid,301000012,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330733271,at.bitfire.davdroid,301000012,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330733272,at.bitfire.davdroid,301000012,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330739205,de.tap.easy_xkcd,166,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330739237,de.tap.easy_xkcd,166,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330739238,de.tap.easy_xkcd,166,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330739241,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592330739257,de.tap.easy_xkcd,166,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330739280,de.tap.easy_xkcd,166,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330747813,org.mozilla.klar,232,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592330755620,org.jitsi.meet,202030,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330755625,org.jitsi.meet,202030,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330755627,org.jitsi.meet,202030,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330755644,org.jitsi.meet,202030,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330755652,org.jitsi.meet,202030,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330755659,org.schabi.newpipe,950,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330755662,org.schabi.newpipe,950,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330755663,org.schabi.newpipe,950,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330755664,org.schabi.newpipe,950,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330755666,org.schabi.newpipe,950,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330763394,com.nextcloud.client,30120090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330766029,com.nextcloud.client,30120090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330766296,com.nextcloud.client,30120090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330766298,com.nextcloud.client,30120090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330766301,com.nextcloud.client,30120090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330769223,it.niedermann.owncloud.notes,2015000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330769226,it.niedermann.owncloud.notes,2015000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330769227,it.niedermann.owncloud.notes,2015000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330769229,it.niedermann.owncloud.notes,2015000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330769232,it.niedermann.owncloud.notes,2015000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330773080,org.shadowice.flocke.andotp,32,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330831102,com.ichi2.anki,21102300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330831161,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330831174,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330831210,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330831256,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330831258,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330831259,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330831271,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330831438,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330831444,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330831489,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592330845534,it.niedermann.owncloud.notes,2015000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330852179,it.niedermann.owncloud.notes,2015000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330867626,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330876042,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330881668,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330892584,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330899409,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330911886,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330932430,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330950971,net.osmand.plus,374,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330962753,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330973362,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330985542,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592330992666,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331003688,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331007963,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331018754,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331024029,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331029870,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331038038,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331050731,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331076513,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331088229,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331104435,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331136684,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331159846,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331181020,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331203758,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331213853,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331226690,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592331227021,im.vector.alpha,10090912,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592333154021,de.tap.easy_xkcd,166,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160560,org.jitsi.meet,202030,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160564,org.schabi.newpipe,950,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160566,com.nextcloud.client,30120090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160567,info.dvkr.screenstream,30409,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160568,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160569,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160642,de.tap.easy_xkcd,166,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160644,org.jitsi.meet,202030,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160645,org.schabi.newpipe,950,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160646,com.nextcloud.client,30120090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160647,info.dvkr.screenstream,30409,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160648,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333160652,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333165085,org.leo.android.dict,58,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333165087,org.leo.android.dict,58,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333188574,com.nextcloud.client,30120090,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592333188665,com.whatsapp,453757,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333188685,com.whatsapp,453757,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592333202920,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592333213161,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592333219284,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592333240582,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592333244225,de.tap.easy_xkcd,166,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592333261759,info.dvkr.screenstream,30409,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592333283314,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592333284163,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592333371931,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592333427697,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592565980474,org.sufficientlysecure.keychain,55000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592565986014,org.sufficientlysecure.keychain,55000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592570593816,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592570593823,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592570593824,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592570593826,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592570593827,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592570599862,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592570604134,at.bitfire.davdroid,301010002,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592570604136,at.bitfire.davdroid,301010002,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592570604137,at.bitfire.davdroid,301010002,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592570604138,at.bitfire.davdroid,301010002,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592570609512,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592570616229,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592570622535,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592570632656,at.bitfire.davdroid,301010002,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592570639835,at.bitfire.davdroid,301010002,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592570643410,at.bitfire.davdroid,301010002,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592570647262,at.bitfire.davdroid,301010002,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592570676729,org.thoughtcrime.securesms,6560,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592571066373,org.thoughtcrime.securesms,6560,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592668635618,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668637706,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668637787,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668637806,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668638605,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668638619,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668647627,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668647632,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668647633,it.niedermann.owncloud.notes,2016001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668647634,it.niedermann.owncloud.notes,2016001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668647635,it.niedermann.owncloud.notes,2016001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668647636,it.niedermann.owncloud.notes,2016001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1592668658168,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592668668083,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592668671391,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592668678456,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592668685688,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592668691920,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592668698654,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592668704788,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1592668710772,it.niedermann.owncloud.notes,2016001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592668714662,it.niedermann.owncloud.notes,2016001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592668718080,it.niedermann.owncloud.notes,2016001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1592668722431,it.niedermann.owncloud.notes,2016001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593191678887,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191679350,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191679352,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191679354,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191687712,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593191705733,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593191706228,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191706683,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191706686,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191706714,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191708590,it.niedermann.owncloud.notes,2016002,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191708592,it.niedermann.owncloud.notes,2016002,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191708593,it.niedermann.owncloud.notes,2016002,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191708594,it.niedermann.owncloud.notes,2016002,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191721233,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593191739129,org.mozilla.firefox,2015701357,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593191744114,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593191744759,org.thoughtcrime.securesms,6640,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593191752310,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593191760584,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593191767389,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593191778459,it.niedermann.owncloud.notes,2016002,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593191784014,org.thoughtcrime.securesms,6640,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593191787810,org.thoughtcrime.securesms,6640,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593191801820,org.thoughtcrime.securesms,6640,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593191802076,org.thoughtcrime.securesms,6640,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593591746265,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591746284,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591746286,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591746287,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591753437,com.ichi2.anki,21103302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591753438,com.ichi2.anki,21103302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591753439,com.ichi2.anki,21103302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591753440,com.ichi2.anki,21103302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591759637,de.markusfisch.android.binaryeye,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591759655,de.markusfisch.android.binaryeye,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591759680,de.markusfisch.android.binaryeye,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591759681,de.markusfisch.android.binaryeye,69,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591760308,it.niedermann.owncloud.notes,2016003,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591760322,it.niedermann.owncloud.notes,2016003,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591760338,it.niedermann.owncloud.notes,2016003,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591760339,it.niedermann.owncloud.notes,2016003,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591770702,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593591780611,com.termux,95,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591780616,com.termux,95,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591780618,com.termux,95,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591780619,com.termux,95,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591780733,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593591789106,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593591798504,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593591806459,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593591825372,it.niedermann.owncloud.notes,2016003,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593591850697,com.termux,95,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593591856551,com.termux,95,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593591953159,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592010892,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593592011445,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592029647,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592124033,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592200901,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592292944,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592346296,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592349970,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592354228,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592355986,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592357551,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592364877,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592373461,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592373710,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1593592889071,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593592889085,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1593592905544,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1593592912147,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594032671099,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594032671120,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594032671121,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594032671123,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594032726275,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594032726297,org.mozilla.firefox,2015706693,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594032734401,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594032734404,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594032734408,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594032734411,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594032806328,com.whatsapp,204309001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594032811904,com.whatsapp,204309001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594032827206,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594032832288,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594032852580,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594032875289,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594199583660,org.fdroid.fdroid,1009000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594199646391,de.markusfisch.android.binaryeye,70,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594199648961,de.markusfisch.android.binaryeye,70,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1594882794196,at.bitfire.davdroid,302010000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882795604,at.bitfire.davdroid,302010000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882796346,at.bitfire.davdroid,302010000,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594882802432,com.nextcloud.client,30120190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882802439,com.nextcloud.client,30120190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882804969,it.niedermann.owncloud.notes,2016004,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882805008,it.niedermann.owncloud.notes,2016004,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882806016,com.chessclock.android,13,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882806073,com.chessclock.android,13,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882810791,it.niedermann.owncloud.notes,2016004,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1594882819071,com.chessclock.android,13,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1594882824026,com.chessclock.android,13,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1594882833924,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882834036,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882855628,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594882868434,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594882869532,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1594882878933,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1594882880449,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1594882882717,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1594882882858,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1594882892572,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882892574,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882911465,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594882933761,com.whatsapp,204416001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594882933780,com.whatsapp,204416001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594883172068,org.thoughtcrime.securesms,6730,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594883281216,org.thoughtcrime.securesms,6730,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1594883747541,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594883747548,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1594883775483,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1594884252461,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1595060136445,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060136454,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060136465,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060136467,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060171701,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060171725,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060171727,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060171729,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060174001,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1595060177462,at.bitfire.davdroid,302010100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060177594,at.bitfire.davdroid,302010100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060177712,at.bitfire.davdroid,302010100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060177720,at.bitfire.davdroid,302010100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595060197735,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1595060294514,at.bitfire.davdroid,302010100,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1595322523064,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595322534659,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1595322547484,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595322559422,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1595325332559,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595325332593,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595325349155,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1595325351380,org.thoughtcrime.securesms,6760,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595325361888,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1595325376462,org.thoughtcrime.securesms,6760,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1595326866375,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595326878542,org.mozilla.firefox,2015708997,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1595326938174,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1595326949847,org.mozilla.klar,241,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1595604773569,org.fdroid.fdroid,1010000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103352396,org.adaway,40306,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103352416,org.adaway,40306,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103352421,org.adaway,40306,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103361337,org.adaway,40306,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103366255,com.ichi2.anki,21201300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103366270,com.ichi2.anki,21201300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103366283,com.ichi2.anki,21201300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103366295,org.adaway,40306,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103372637,com.ichi2.anki,21201300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103377445,de.danoeh.antennapod,1080200,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103377490,de.danoeh.antennapod,1080200,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103377521,de.danoeh.antennapod,1080200,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103381948,de.danoeh.antennapod,1080200,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103381951,de.markusfisch.android.binaryeye,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103381959,de.markusfisch.android.binaryeye,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103381963,de.markusfisch.android.binaryeye,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103390300,de.markusfisch.android.binaryeye,71,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103390641,at.bitfire.davdroid,302010300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103390647,at.bitfire.davdroid,302010300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103390653,at.bitfire.davdroid,302010300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103397698,at.bitfire.davdroid,302010300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103409497,at.bitfire.davdroid,302010300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103411496,at.bitfire.davdroid,302010300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103414032,at.bitfire.davdroid,302010300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103417102,org.jitsi.meet,203020,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103417117,org.jitsi.meet,203020,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103417127,org.jitsi.meet,203020,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103432715,org.schabi.newpipe,951,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103432722,org.schabi.newpipe,951,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103432725,org.schabi.newpipe,951,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103432728,org.jitsi.meet,203020,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103432730,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103432735,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103432743,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103441993,org.jitsi.meet,203020,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103447202,org.schabi.newpipe,951,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103447470,org.schabi.newpipe,951,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103457860,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103461181,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103466952,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103473234,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103479115,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103484435,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103490160,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103494952,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103495433,it.niedermann.owncloud.notes,2016007,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103509529,org.thoughtcrime.securesms,6800,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103533455,org.thoughtcrime.securesms,6800,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596103543358,com.whatsapp,204517001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596103557155,com.whatsapp,204517001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1596289254254,org.torproject.android,1630200100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1596289265728,org.torproject.android,1630200100,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1597839960123,de.danoeh.antennapod,1080300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1597839962221,de.markusfisch.android.binaryeye,72,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1597839966051,at.bitfire.davdroid,302010401,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1597839969679,org.sufficientlysecure.viewer,2822,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1597839974794,org.schabi.newpipe,953,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1597839985022,org.schabi.newpipe,953,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1597839987196,com.termux,96,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1597839997209,org.schabi.newpipe,953,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1597840028230,com.termux,96,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1597840047041,com.termux,96,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1597840059373,com.termux,96,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1597840086893,com.termux,96,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1597996738912,org.mozilla.firefox,2015711849,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1597996795883,org.mozilla.firefox,2015711849,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1598007237879,info.guardianproject.ripple,139,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1598007240434,info.guardianproject.ripple,139,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1598644595578,net.gaast.giggity,518,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1598644599945,net.gaast.giggity,518,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1598644600372,net.gaast.giggity,518,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1598644602386,net.gaast.giggity,518,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1599224013886,at.bitfire.davdroid,303000006,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1599224022375,at.bitfire.davdroid,303000006,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1599224036661,com.nextcloud.client,30130090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1599224058029,com.nextcloud.client,30130090,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1599224070296,im.vector.alpha,10090913,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1599224073035,de.schildbach.oeffi,678,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1599224103011,de.schildbach.oeffi,678,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1599224105726,de.schildbach.oeffi,678,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1599224132656,org.thoughtcrime.securesms,6960,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1599224149490,org.thoughtcrime.securesms,6960,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1600320741187,at.bitfire.davdroid,303010001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1600320757038,at.bitfire.davdroid,303010001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1600320768544,com.termux,99,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1600320785568,com.termux,99,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1600320911987,com.todobom.opennotescanner,35,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1600320920348,com.todobom.opennotescanner,35,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1601486661104,com.ichi2.anki,21300302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1601486661133,com.ichi2.anki,21300302,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1601486673005,com.ichi2.anki,21300302,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1601486674307,org.jitsi.meet,204010,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1601486674374,org.jitsi.meet,204010,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1601486685900,org.jitsi.meet,204010,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1601486686346,com.nextcloud.client,30130190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1601486686349,com.nextcloud.client,30130190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1601486693599,org.jitsi.meet,204010,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1601486700499,com.nextcloud.client,30130190,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1601486711932,com.nextcloud.client,30130190,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1601486721593,com.nextcloud.client,30130190,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858498122,com.ichi2.anki,21300305,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858504833,at.bitfire.davdroid,303020005,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858504838,com.ichi2.anki,21300305,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858505065,at.bitfire.davdroid,303020005,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858505400,org.gateshipone.malp,33,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858506945,org.gateshipone.malp,33,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858506946,org.schabi.newpipe,954,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858506947,org.schabi.newpipe,954,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858506948,com.ichi2.anki,21300305,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858506950,at.bitfire.davdroid,303020005,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858506951,org.gateshipone.malp,33,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858506954,org.schabi.newpipe,954,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858510383,it.niedermann.owncloud.notes,2017001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858510385,it.niedermann.owncloud.notes,2017001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858510386,it.niedermann.owncloud.notes,2017001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858533239,org.schabi.newpipe,954,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858539807,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858539872,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858540078,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1602858559219,it.niedermann.owncloud.notes,2017001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858581525,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858596204,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858599943,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858610190,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858621705,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858628075,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858633159,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858638973,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858648889,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858657848,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858674335,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858678137,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858695210,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858760300,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1602858760847,com.termux,101,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1603732776247,de.danoeh.antennapod,2000295,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732776277,de.danoeh.antennapod,2000295,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732776788,de.danoeh.antennapod,2000295,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732778576,de.danoeh.antennapod,2000295,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1603732785986,de.danoeh.antennapod,2000295,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1603732787300,at.bitfire.davdroid,303040100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732787303,at.bitfire.davdroid,303040100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732787311,at.bitfire.davdroid,303040100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732792770,at.bitfire.davdroid,303040100,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1603732796265,org.schabi.newpipe,955,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732796351,org.schabi.newpipe,955,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732796355,org.schabi.newpipe,955,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732797021,at.bitfire.davdroid,303040100,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1603732800776,org.schabi.newpipe,955,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1603732804312,org.schabi.newpipe,955,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1603732808418,org.schabi.newpipe,955,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1603732815346,org.schabi.newpipe,955,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1603732954004,com.termux,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732954009,com.termux,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732954014,com.termux,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603732982536,com.termux,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1603732988507,com.termux,102,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1603733021771,net.osmand.plus,383,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603733021772,net.osmand.plus,383,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603733021775,net.osmand.plus,383,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603733057753,com.whatsapp,205123001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603733091679,com.whatsapp,205123001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1603733099821,com.whatsapp,205123001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1603978600175,at.bitfire.davdroid,303050000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603978600182,at.bitfire.davdroid,303050000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603978600538,at.bitfire.davdroid,303050000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1603978630007,org.leo.android.dict,64,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1604086238193,org.shadowice.flocke.andotp,35,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1604086238233,org.shadowice.flocke.andotp,35,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1604086238234,org.shadowice.flocke.andotp,35,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1604086269767,org.shadowice.flocke.andotp,35,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1604086283822,org.shadowice.flocke.andotp,35,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1604086288606,org.shadowice.flocke.andotp,35,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1604168408703,org.thoughtcrime.securesms,7280,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1604168429647,org.thoughtcrime.securesms,7280,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1604485997152,org.fdroid.fdroid,1010050,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1604486761935,de.danoeh.antennapod,2000395,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1604486771375,com.whatsapp,205218001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1604486773677,de.danoeh.antennapod,2000395,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1604486786737,com.whatsapp,205218001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1604529259777,org.torproject.android,1632300100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1604529269687,org.torproject.android,1632300100,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1604912489334,org.thoughtcrime.securesms,7320,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1604912506672,org.thoughtcrime.securesms,7320,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605176522852,org.thoughtcrime.securesms,7360,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605176551917,org.thoughtcrime.securesms,7360,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605176626496,com.whatsapp,205224001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605176715625,com.whatsapp,205224001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605249259343,at.bitfire.davdroid,303060003,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605249259350,at.bitfire.davdroid,303060003,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605249259352,at.bitfire.davdroid,303060003,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605249262534,info.dvkr.screenstream,30500,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605249262540,info.dvkr.screenstream,30500,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605249262551,info.dvkr.screenstream,30500,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605249266142,info.dvkr.screenstream,30500,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605249282510,info.dvkr.screenstream,30500,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605249300444,info.dvkr.screenstream,30500,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605249320908,info.dvkr.screenstream,30500,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605249345495,info.dvkr.screenstream,30500,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605249347400,info.dvkr.screenstream,30500,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605380735746,info.dvkr.screenstream,30501,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605380735949,info.dvkr.screenstream,30501,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605380736444,info.dvkr.screenstream,30501,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605380741133,info.dvkr.screenstream,30501,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605380743902,info.dvkr.screenstream,30501,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605380746459,info.dvkr.screenstream,30501,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605467090323,de.schildbach.oeffi,682,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605467090692,de.schildbach.oeffi,682,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605467093055,de.schildbach.oeffi,682,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605467096600,de.schildbach.oeffi,682,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605607873994,net.osmand.plus,385,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605607874001,net.osmand.plus,385,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605607874002,net.osmand.plus,385,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605608106777,net.osmand.plus,385,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605685058047,org.jitsi.meet,204020,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605685058060,org.jitsi.meet,204020,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605685058077,org.jitsi.meet,204020,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958760451,com.ichi2.anki,21400300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958760542,com.ichi2.anki,21400300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958760546,com.ichi2.anki,21400300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958783111,com.ichi2.anki,21400300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958783124,com.nextcloud.client,30140090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958783128,com.nextcloud.client,30140090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958783143,com.nextcloud.client,30140090,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958804545,com.nextcloud.client,30140090,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958804546,com.nextcloud.client,30140090,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958824426,com.nextcloud.client,30140090,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958837112,com.nextcloud.client,30140090,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958842148,com.termux,103,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958842154,com.termux,103,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958842158,com.termux,103,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958844826,de.schildbach.oeffi,685,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958844830,de.schildbach.oeffi,685,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958844837,de.schildbach.oeffi,685,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1605958853732,com.nextcloud.client,30140090,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958895199,de.schildbach.oeffi,685,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958923949,com.termux,103,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958925428,com.termux,103,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958950188,com.ichi2.anki,21400300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958959176,de.schildbach.oeffi,685,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958964454,de.schildbach.oeffi,685,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605958973805,de.schildbach.oeffi,685,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959005338,com.termux,103,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959011604,com.nextcloud.client,30140090,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959043495,com.termux,103,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959050404,com.nextcloud.client,30140090,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959066734,de.schildbach.oeffi,685,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959103019,com.termux,103,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959113257,com.termux,103,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959121299,com.ichi2.anki,21400300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959148034,com.termux,103,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959157218,de.schildbach.oeffi,685,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959175773,de.schildbach.oeffi,685,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959205424,com.termux,103,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959228826,com.nextcloud.client,30140090,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959255976,de.schildbach.oeffi,685,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959261895,com.ichi2.anki,21400300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1605959265388,com.ichi2.anki,21400300,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606045317377,de.markusfisch.android.binaryeye,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606045317465,de.markusfisch.android.binaryeye,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606045320860,de.markusfisch.android.binaryeye,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606045323153,de.markusfisch.android.binaryeye,74,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606165553808,org.jitsi.meet,205000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606165553813,org.jitsi.meet,205000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606165553850,org.jitsi.meet,205000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606165559688,org.jitsi.meet,205000,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1606165569133,org.jitsi.meet,205000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606550022319,com.ichi2.anki,21401300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606550022359,com.ichi2.anki,21401300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606550023470,de.schildbach.oeffi,687,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606550023501,de.schildbach.oeffi,687,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606550023968,com.ichi2.anki,21401300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606550023970,de.schildbach.oeffi,687,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606550028927,org.leo.android.dict,65,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606550034996,org.leo.android.dict,65,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606550040258,org.leo.android.dict,65,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606550042302,org.leo.android.dict,65,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606550045103,com.whatsapp,205516001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606550050056,com.whatsapp,205516001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606550051159,com.whatsapp,205516001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606550053044,com.whatsapp,205516001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606550053503,com.whatsapp,205516001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606550061647,com.whatsapp,205516001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606678681752,org.gateshipone.malp,34,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606678681826,org.gateshipone.malp,34,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606678681828,org.gateshipone.malp,34,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606678687092,org.gateshipone.malp,34,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606678689484,org.gateshipone.malp,34,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606678691778,org.gateshipone.malp,34,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606770181072,de.schildbach.oeffi,688,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606770181076,de.schildbach.oeffi,688,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606770181281,de.schildbach.oeffi,688,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606770184103,de.schildbach.oeffi,688,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606770186047,de.schildbach.oeffi,688,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606770187996,de.schildbach.oeffi,688,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606840939883,at.bitfire.davdroid,303070006,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606840939895,at.bitfire.davdroid,303070006,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606840940077,at.bitfire.davdroid,303070006,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606840949865,at.bitfire.davdroid,303070006,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606840953047,org.thoughtcrime.securesms,7460,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1606840955356,at.bitfire.davdroid,303070006,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606840959849,org.thoughtcrime.securesms,7460,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1606840967338,org.thoughtcrime.securesms,7460,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607383323178,com.ichi2.anki,21402300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607383323185,com.ichi2.anki,21402300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607383323189,com.ichi2.anki,21402300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607383327117,info.dvkr.screenstream,30502,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607383327119,info.dvkr.screenstream,30502,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607383327120,info.dvkr.screenstream,30502,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607383334421,info.dvkr.screenstream,30502,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607383349064,info.dvkr.screenstream,30502,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607383371664,info.dvkr.screenstream,30502,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607383385923,info.dvkr.screenstream,30502,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607383386118,info.dvkr.screenstream,30502,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607470800642,com.nextcloud.client,30140190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607470800678,com.nextcloud.client,30140190,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607470808528,com.nextcloud.client,30140190,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1607470849091,com.nextcloud.client,30140190,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607556038813,info.dvkr.screenstream,30503,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607556040077,info.dvkr.screenstream,30503,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607556043178,info.dvkr.screenstream,30503,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607556046402,info.dvkr.screenstream,30503,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607773457991,org.torproject.android,1633300100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607773458037,org.torproject.android,1633300100,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607773474805,org.torproject.android,1633300100,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607773557481,org.thoughtcrime.securesms,7500,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607773577504,org.thoughtcrime.securesms,7500,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607773594967,com.whatsapp,205624001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607773667092,com.whatsapp,205624001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1607992201399,org.thoughtcrime.securesms,7560,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1607992221327,org.thoughtcrime.securesms,7560,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1608331782073,de.danoeh.antennapod,2010195,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1608331821192,de.danoeh.antennapod,2010195,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1608423237692,de.schildbach.oeffi,689,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1608423237696,de.schildbach.oeffi,689,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1608423237697,de.schildbach.oeffi,689,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1608423240480,de.schildbach.oeffi,689,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1608423242287,de.schildbach.oeffi,689,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1608423244212,de.schildbach.oeffi,689,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1609106812077,it.niedermann.owncloud.notes,2018001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609106812359,it.niedermann.owncloud.notes,2018001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609106816528,it.niedermann.owncloud.notes,2018001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609106835180,it.niedermann.owncloud.notes,2018001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1609106847977,it.niedermann.owncloud.notes,2018001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1609106865811,it.niedermann.owncloud.notes,2018001,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1609375451929,org.jitsi.meet,205001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609375451952,org.jitsi.meet,205001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609375451956,org.jitsi.meet,205001,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609375453307,de.schildbach.oeffi,690,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609375453343,de.schildbach.oeffi,690,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609375453345,de.schildbach.oeffi,690,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609375459433,org.jitsi.meet,205001,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1609375475802,de.schildbach.oeffi,690,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1609375477104,de.schildbach.oeffi,690,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1609375479036,de.schildbach.oeffi,690,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1609375481000,de.schildbach.oeffi,690,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1609605542940,com.termux,104,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609605542972,com.termux,104,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609605542978,com.termux,104,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609605542979,com.termux,104,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1609605552254,com.termux,104,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1609605571509,com.termux,104,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1610447472670,org.fdroid.fdroid,1011050,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659690750,com.ichi2.anki,21403300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659690988,com.ichi2.anki,21403300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659691716,com.ichi2.anki,21403300,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659693105,de.danoeh.antennapod,2010295,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659693107,de.danoeh.antennapod,2010295,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659693108,de.danoeh.antennapod,2010295,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659697495,at.bitfire.davdroid,303080002,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659697501,at.bitfire.davdroid,303080002,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659697506,at.bitfire.davdroid,303080002,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659706299,at.bitfire.davdroid,303080002,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1610659710762,at.bitfire.davdroid,303080002,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1610659743753,at.bitfire.davdroid,303080002,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1610659755647,org.jitsi.meet,206000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659755651,org.jitsi.meet,206000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659755653,org.jitsi.meet,206000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659767836,it.niedermann.owncloud.notes,3001000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659767837,it.niedermann.owncloud.notes,3001000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659767838,it.niedermann.owncloud.notes,3001000,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610659979753,org.jitsi.meet,206000,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1610660069985,it.niedermann.owncloud.notes,3001000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1610660086464,it.niedermann.owncloud.notes,3001000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1610660104105,it.niedermann.owncloud.notes,3001000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1610660124871,it.niedermann.owncloud.notes,3001000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1610660144557,it.niedermann.owncloud.notes,3001000,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1610799927119,org.thoughtcrime.securesms,7690,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1610800037758,org.thoughtcrime.securesms,7690,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE +1611268892206,com.termux,105,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1611268892217,com.termux,105,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1611268892218,com.termux,105,org.fdroid.fdroid.installer.Installer.action.INSTALL_STARTED +1611268901740,com.termux,105,org.fdroid.fdroid.installer.Installer.action.INSTALL_INTERRUPTED +1611268916127,com.termux,105,org.fdroid.fdroid.installer.Installer.action.INSTALL_COMPLETE diff --git a/tools/validate-fdroid-metrics.json.py b/tools/validate-fdroid-metrics.json.py new file mode 100755 index 000000000..a4823f4df --- /dev/null +++ b/tools/validate-fdroid-metrics.json.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python3 + +import glob +import json +import os +import sys +import jsonschema + +os.chdir(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) +with open('app/src/test/resources/cimp.schema.json') as fp: + schema = json.load(fp) + +errors = 0 +files = sys.argv[1:] +if not files: + files = glob.glob(os.path.join(os.getenv('HOME'), 'Downloads', '*.json')) +if not files: + print('Usage: %s file.json ...' % __file__) + exit(1) +for f in files: + print('checking', f) + with open(f) as fp: + report = json.load(fp) + if jsonschema.validate(report, schema) is not None: + print('ERROR: %s did not validate' % f) + errors += 1 +exit(errors)