Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
64c92dd
Add comprehensive Sentry integration with auto-demo capabilities
Prithvirajkumar Feb 12, 2026
3d3fcf1
Update Sentry SDK to latest version 9.13.0
Prithvirajkumar Feb 12, 2026
bf17e76
Refactor TTFD tracking to use SentryDisplayWidget strategically and a…
Prithvirajkumar Feb 14, 2026
a7a95bd
Enhance size analysis upload script with complete metadata support
Prithvirajkumar Feb 17, 2026
a63d3c0
Add intentional bloat for Size Analysis insights demo
Prithvirajkumar Feb 17, 2026
b489e30
Add random customerType tag to all Sentry events
Prithvirajkumar Feb 17, 2026
6d3856d
Add promo code feature to checkout with Sentry logging
Prithvirajkumar Feb 17, 2026
c1c912a
Set SAVE20 as default promo code value
Prithvirajkumar Feb 17, 2026
c1f81bf
Add Session Replay privacy masking for financial information
Prithvirajkumar Feb 17, 2026
416e012
Disable screenshot attachment in Sentry configuration
Prithvirajkumar Feb 17, 2026
a2a0340
Add unified demo script with integrated release management
Prithvirajkumar Feb 17, 2026
9948204
Remove deprecated scripts and update documentation for unified demo.sh
Prithvirajkumar Feb 17, 2026
6f2b214
Align project version with sentry-dart SDK version 9.13.0
Prithvirajkumar Feb 18, 2026
403e79f
Enable metrics and enhance logging with structured attributes
Prithvirajkumar Feb 18, 2026
5efa98b
Add automatic ProGuard mapping upload for detailed DEX breakdown
Prithvirajkumar Feb 18, 2026
0698e24
Uncomment SENTRY_SIZE_ANALYSIS_ENABLED in .env.example
Prithvirajkumar Feb 18, 2026
c30ffc9
Clean up documentation and simplify configuration for solution engineers
Prithvirajkumar Feb 18, 2026
45ed903
Fix session replay masking and ProGuard mapping for size analysis
Prithvirajkumar Feb 18, 2026
16181db
Disable default session replay masking for demo environment
Prithvirajkumar Feb 18, 2026
9d41687
Optimize size analysis and fix promo code error logging
Prithvirajkumar Feb 18, 2026
48304a3
Add Spotlight installation and usage instructions to README
Prithvirajkumar Feb 18, 2026
ab57fc7
Bump Sentry SDK to 9.14.0 and align project version
Prithvirajkumar Feb 23, 2026
dc738f1
Use engineer identifier as email when se is set
Prithvirajkumar Feb 23, 2026
49f2ff8
Use john.logs@example.com ~10 times per day for default se identity
Prithvirajkumar Feb 23, 2026
f608033
Replace deprecated SentryLogAttribute with SentryAttribute in checkou…
Prithvirajkumar Feb 23, 2026
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
30 changes: 29 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,35 @@
# Example .env file for empower_flutter
# Copy this file to .env and fill in your actual values

# ========================================
# Sentry Core Configuration
# ========================================
SENTRY_AUTH_TOKEN=your_auth_token
SENTRY_DSN=your_dsn
SENTRY_RELEASE=your_release_version_or_git_sha
SENTRY_RELEASE=empower_flutter@9.14.0+1 # Format: appname@version+build
SENTRY_ENVIRONMENT=your_environment

# ========================================
# Sentry Organization & Project
# ========================================
SENTRY_ORG=your-org-slug
SENTRY_PROJECT=your-project-slug

# ========================================
# Optional: Size Analysis
# ========================================
# Enable automatic build size analysis uploads during release builds
# When enabled, APK/AAB files are automatically uploaded to Sentry
# for size tracking and optimization insights
# Requires sentry-cli to be installed (brew install sentry-cli)
# Set to 'false' or comment out to disable (useful for faster local builds)
SENTRY_SIZE_ANALYSIS_ENABLED=true

# ========================================
# Optional: CI/CD Metadata
# ========================================
# These are typically auto-detected in CI environments
# CI_COMMIT_SHA=abc123
# CI_MERGE_REQUEST_DIFF_BASE_SHA=def456
# CI_COMMIT_REF_NAME=feature-branch
# GITHUB_PR_NUMBER=42
Loading