return "📁 Storage:\nTotal: ${formatSize(total)}\nUsed: ${formatSize(used)}\nFree: ${formatSize(available)}" }
<Button android:id="@+id/btnBatteryStatus" android:text="Check Battery" ... />
<Button android:id="@+id/btnStorageInfo" android:text="Analyze Storage" ... />
Add these dependencies in your build.gradle.kts (Module):
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:padding="16dp"> <Button android:id="@+id/btnClearCache" android:text="Clear App Cache" ... />