Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a5aafa6
Add .gitignore file to exclude build and temporary files
dandinu Nov 26, 2025
d9734c0
Migrate to AndroidX and update Gradle configuration
dandinu Nov 26, 2025
592ef08
Refactor AndroidManifest.xml: Remove redundant package declaration an…
dandinu Nov 26, 2025
75c711b
Implement CameraX integration for photo capture and lifecycle management
dandinu Nov 26, 2025
b371865
Refactor CameraX initialization to start capture sequence after succe…
dandinu Nov 26, 2025
62ffd34
Refactor audio recording logic to improve error handling and ensure t…
dandinu Nov 26, 2025
5552a4a
Update README.md: Enhance project description, clarify security notic…
dandinu Nov 26, 2025
a7edd4d
Update README.md: Replace placeholder repository URL in clone instruc…
dandinu Nov 26, 2025
a66eac0
Update README.md: Add instructions for running the app in an emulator
dandinu Dec 27, 2025
e42391f
Refactor RequestPermissionsActivity: Disable checkboxes and remove WR…
dandinu Dec 27, 2025
86d18ea
Remove WRITE_EXTERNAL_STORAGE permission check from permission valida…
dandinu Dec 27, 2025
0bf6a94
feat: Add Dashboard and History fragments with UI components
dandinu Dec 27, 2025
367fbfa
feat: Update README.md with logo and new dashboard image
dandinu Dec 27, 2025
cd544af
feat: Always trigger alarm when starting tracking
dandinu Dec 27, 2025
ad32971
feat: Implement photo browsing feature with developer tools access
dandinu Dec 27, 2025
c186149
feat: Add screenshot capture feature with MediaProjection support
dandinu Dec 27, 2025
7e38a06
feat: Update time formatting to use Locale.US and enhance tracking du…
dandinu Dec 27, 2025
b17b994
chore: Bump version to 1.1
dandinu Dec 28, 2025
2bd416c
feat: Enhance photo browsing with date grouping and sorting functiona…
dandinu Dec 28, 2025
eeb3178
feat: Add Data Browser for viewing captured data
dandinu Dec 28, 2025
e40873e
feat: Always save location to file and conditionally send via SMS in …
dandinu Dec 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 110 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
# Built application files
*.apk
*.ap_
*.aab

# Files for the ART/Dalvik VM
*.dex

# Java class files
*.class

# Generated files
bin/
gen/
out/
release/

# Gradle files
.gradle/
build/
**/build/

# Local configuration file (sdk path, etc)
local.properties

# Proguard folder generated by Eclipse
proguard/

# Log Files
*.log

# Android Studio Navigation editor temp files
.navigation/

# Android Studio captures folder
captures/

# IntelliJ
*.iml
.idea/
*.ipr
*.iws

# Keystore files
*.jks
*.keystore

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
.cxx/

# Google Services (e.g. APIs or Firebase)
google-services.json

# Freeline
freeline.py
freeline/
freeline_project_description.json

# fastlane
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
fastlane/readme.md

# Version control
vcs.xml

# lint
lint/intermediates/
lint/generated/
lint/outputs/
lint/tmp/
lint-results*.xml
lint-results*.html

# Android Profiling
*.hprof

# macOS
.DS_Store
.AppleDouble
.LSOverride
._*

# Thumbnails
Thumbs.db

# Backup files
*~
*.swp
*.bak

# Temporary files
*.tmp
tmp/

# NDK
obj/
.externalNativeBuild

# Miscellaneous
.vscode/
*.orig

# Claude Code and Serena config
CLAUDE.md
.claude/
.serena/
Loading