Add configurable chunked storage limits

This commit is contained in:
ajp_anton
2026-07-27 14:06:14 +00:00
parent dca86ae393
commit 8f21874492
5 changed files with 306 additions and 95 deletions
@@ -33,5 +33,31 @@
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:text="Lock app with phone unlock" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:text="Storage limits" />
<EditText
android:id="@+id/log_limit_mib"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Log storage limit (MiB)"
android:inputType="number" />
<EditText
android:id="@+id/image_limit_mib"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Image storage limit (MiB)"
android:inputType="number" />
<Button
android:id="@+id/save_storage_limits"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Save storage limits" />
</LinearLayout>
</ScrollView>