Overview
Once you’ve built and signed your release APK or AAB, you can distribute TechSales to users. This guide covers Google Play Store distribution and alternative distribution methods.Google Play Store Distribution
The primary distribution channel for Android apps is the Google Play Store, which provides automatic updates, security scanning, and global reach.Prerequisites
Developer Account
Create a Google Play Developer account:
- Visit Google Play Console
- Pay one-time $25 registration fee
- Complete account verification
Create Application
In Google Play Console:
- Create new application
- Select default language
- Enter app title: “TechSales”
- Specify app or game category
App Requirements
Target SDK Requirements
TechSales currently targets Android 14 (API level 36):Google Play requires new apps to target recent Android versions. TechSales targets SDK 36, meeting current requirements.
Permission Review
Review permissions declared inAndroidManifest.xml:
Content Rating
Complete the content rating questionnaire:- Answer questions about app content
- Receive ratings for different regions (ESRB, PEGI, etc.)
- Required before publishing
Data Safety
Declare data collection and sharing practices:- What data is collected
- How data is used
- Whether data is shared with third parties
- Security practices
Version Management
Version Code
TheversionCode is an integer that must increase with each release:
Google Play uses
versionCode to determine which version is newer. Users can only update to higher version codes.Version Name
TheversionName is a user-visible string:
- Semantic:
"1.0.0"→"1.1.0"→"2.0.0" - Date-based:
"2026.03.01" - Build number:
"1.0 (2026-03-04)"
Updating Versions
Before each release, updateapp/build.gradle.kts:
Upload Release
Build Signed AAB
Generate a signed Android App Bundle:Output:
app/build/outputs/bundle/release/app-release.aabCreate Release in Play Console
- Navigate to Production > Releases
- Click “Create new release”
- Upload
app-release.aab - Google Play validates the bundle
Release Tracks
Google Play provides multiple release tracks:Internal Testing
- Purpose: Quick testing with small team
- Review: No review required
- Users: Up to 100 testers
- Updates: Available within minutes
Closed Testing
- Purpose: Beta testing with selected users
- Review: Minimal review
- Users: Custom email lists or Google Groups
- Feedback: Testers can provide feedback
Open Testing
- Purpose: Public beta
- Review: Standard review
- Users: Anyone can join
- Distribution: Optional Play Store listing
Production
- Purpose: General availability
- Review: Full review (typically 1-3 days)
- Users: All users
- Staged rollout: 5%, 10%, 20%, 50%, 100%
Start with Internal Testing to validate builds, then progress to Closed Testing, Open Testing, and finally Production.
Alternative Distribution Methods
Direct APK Distribution
Distribute APK files directly to users:-
Build signed APK:
-
Share
app-release.apkvia:- Cloud storage (Dropbox, Google Drive)
- Company website
Enterprise Distribution
For corporate deployments:- Google Play Managed Private Apps: Distribute internally via Play Store
- MDM Solutions: Use Mobile Device Management (Intune, VMware Workspace ONE)
- Company Portal: Host APKs on internal servers
Alternative App Stores
Distribute through third-party stores:- Amazon Appstore
- Samsung Galaxy Store
- Huawei AppGallery
- F-Droid (open-source apps)
Update Strategies
In-App Updates
Implement Google Play In-App Updates API:- Immediate: Forces update before app continues
- Flexible: Downloads in background, applies when convenient
Staged Rollouts
Gradually release updates:- Start with 10% of users
- Monitor crash reports and ratings
- Increase to 50% after 24-48 hours
- Full rollout (100%) after validation
Emergency Updates
For critical bug fixes:- Halt current rollout if needed
- Upload patched version with incremented
versionCode - Expedite review by contacting Play Console support
- Roll out at 100% immediately
Version Compatibility
Current TechSales compatibility:- Android 10+: ~95% of active devices
- Excludes: Android 9 (Pie) and earlier
Monitor device compatibility in Play Console Analytics to inform future
minSdk decisions.Post-Launch Monitoring
Play Console Metrics
Track key metrics:- Installs: Total and active device installs
- Ratings: Average rating and review count
- Crashes: ANR rate and crash rate
- Retention: D1, D7, D30 retention rates
Pre-Launch Report
Google automatically tests your app:- Tests on multiple devices
- Checks for crashes
- Identifies accessibility issues
- Security vulnerability scan
Release Management
Best practices:- Release updates regularly (bi-weekly or monthly)
- Include release notes with each version
- Test on Internal track before Production
- Monitor first 24 hours closely
- Respond to user reviews
Distribution Checklist
Pre-Release
- ✓ Version code incremented
- ✓ Version name updated
- ✓ APK/AAB signed with release key
- ✓ ProGuard/R8 tested (if enabled)
- ✓ All features tested on target devices
Play Console
- ✓ Store listing complete
- ✓ Screenshots and graphics uploaded
- ✓ Content rating obtained
- ✓ Data safety form completed
- ✓ Privacy policy URL provided
For signing configuration details, see App Signing. For build instructions, see Release Builds.