No description
Find a file
sherlock c396c6f20f refactor: modularize Lab2_Q1 into reusable components for exam prep
Extract LifecycleDemoScreen into screens/, ActionButtonsCard and EventLogCard into components/.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 20:56:23 +05:30
.idea fixes and updates 2026-02-04 03:49:10 +05:30
app refactor: modularize Lab2_Q1 into reusable components for exam prep 2026-02-24 20:56:23 +05:30
gradle commit 2026-01-15 09:48:33 +05:30
.gitignore commit 2026-01-15 09:48:33 +05:30
build.gradle.kts commit 2026-01-15 09:48:33 +05:30
gradle.properties fixes and updates 2026-02-04 03:49:10 +05:30
gradlew func 2026-01-15 09:55:38 +05:30
gradlew.bat commit 2026-01-15 09:48:33 +05:30
README.md func 2026-01-15 10:02:05 +05:30
settings.gradle.kts commit 2026-01-15 09:48:33 +05:30

Lifecycle Order:

  • Starting app: onCreate → onStart → onResume
  • Showing dialog: onPause (dialog shown) → onResume (dialog dismissed)
  • Backgrounding app: onPause → onStop
  • Returning to app: onRestart → onStart → onResume
  • Recreating activity: onPause → onStop → onDestroy → onCreate → onStart → onResume