Submitting your first app to Google Play can feel overwhelming. The developer console has over a dozen screens, each with fields that have real consequences if filled wrong. One mistake and your app sits in review for an extra week — or gets rejected outright.
This tutorial walks through every step of a first submission in 2026, exactly as you would see it in the Play Console. Follow each step in order and you will hit Publish with confidence.
Step 1: Create Your Developer Account
Before anything else, you need a Google Play Developer account. If you already have one, skip to Step 2.
What you need:
- A Google account (Gmail is fine, but use one you will keep long-term)
- $25 USD registration fee (one-time, non-refundable)
- Government-issued ID for verification (passport or driver's license)
Go to play.google.com/console/signup and click "Create Account." Choose Individual account type unless you have a registered business entity. Pay the $25 fee. Google will ask for identity verification within 48 hours — submit a clear photo of your ID and a short selfie video holding it. Verification typically takes 1-3 business days in 2026.
Important: Use your real name exactly as it appears on your ID. Google's automated ID matching system will flag even minor mismatches — e.g. "Mike" vs "Michael" is a common rejection.
Step 2: Create a New App
Once verified, log into the Play Console. Click "Create app" in the top right corner.
You will see three fields:
- App name: This is your store listing title. Keep it under 30 characters. In 2026, Google penalizes titles with keywords beyond your brand name. Example: "FitTrack" not "FitTrack - Calories, Steps, Weight Loss Tracker"
- Default language: Set to English (United States) unless your app is region-specific
- App or game: Select honestly — misclassifying can trigger deceptive behavior flags
- Free or paid: Choose Free initially. You can add in-app purchases later. Paid apps require additional tax setup
Click "Create app." The console now displays your app dashboard with several sections down the left sidebar.
Step 3: Set Up Store Listing
The store listing is what users see on Google Play. In 2026, Google's metadata scanner checks every field for keyword stuffing and misleading claims.
Short Description (80 characters max)
This is your app's elevator pitch. One sentence that tells users what your app does and why they need it. Avoid keyword lists. Example: "Track daily calories and macros with smart barcode scanning."
Full Description (4000 characters max)
Describe your app's features naturally. 2026 Google favors descriptions that read like a human wrote them — not a SEO bot. Include:
- Core features and what makes your app different
- Who the app is for
- What problem it solves
Do NOT: list keywords, mention competitor names, or claim features that don't exist yet.
Screenshots, Graphics, and Video
In 2026, you need exactly 8 screenshots (not 6, not 10). Upload them in 16:9 landscape and 9:16 portrait formats:
- Phone screenshots at 1080 x 1920 px minimum
- 7-inch tablet screenshots at 1920 x 1200 px
- 10-inch tablet screenshots at 2560 x 1600 px
- Feature graphic: 1024 x 500 px (required)
Each screenshot must depict an actual screen from your app. No mockups of features that do not exist. Google's automated screenshot validator compares images against the submitted APK's UI screens.
A promotional video (YouTube URL) is optional but increases conversion by an average of 25%.
Categorization
Pick the most specific category for your app. Google uses category to route your app to the right review queue. Wrong categorization causes rejection.
Tags
Add up to 5 tags that describe your app's key features. No spam tags (e.g. don't tag "health & fitness" on a productivity app).
Step 4: Prepare Your App Bundle (AAB)
In 2026, Google Play only accepts Android App Bundles (.aab), not raw APKs. You build the AAB from Android Studio:
# In Android Studio menu: Build > Build Bundle(s) / APK(s) > Build Bundle(s)
# Or from command line:
./gradlew bundleRelease
Key requirements before building:
- Set
minSdkVersionto at least 26 (Android 8.0) — Google now rejects apps targeting Android 7 or lower - Set
targetSdkVersionto 35 (Android 15) — required in 2026 - Sign the bundle with your app signing key
- Ensure versionCode is unique and higher than any previous release
The built file will be at app/build/outputs/bundle/release/app-release.aab. Upload this file in the Play Console under Production > Release > Create new release.
Step 5: Data Safety Section
Introduced in 2022 and heavily enforced starting 2025, the Data Safety section requires you to declare every type of data your app collects and shares. In 2026, this section is the #1 reason for pre-review pauses — Google runs a static analysis of your APK and flags undeclared data collection.
Fill out the form honestly:
- Check every data type your app accesses (location, camera, photos, contacts, etc.)
- Specify whether data is collected, shared, or encrypted
- Select data handling policies (deletion options, retention period)
- Link your privacy policy URL
Pitfall: If your app uses any SDK (analytics, ads, crash reporting), that SDK likely collects data too. You must declare SDK data collection as your own. Google's APK scanner detects SDK-permissions and compares them against your Data Safety form. Mismatches trigger a rejection.
Step 6: Content Ratings
Complete the IARC content rating questionnaire. It takes about 10 minutes and covers:
- Violence, sexual content, and language
- User-generated content and social features
- Gambling and simulated gambling
Answer honestly. Over-reporting restricts your audience; under-reporting risks a compliance strike. If your app has ads, declare "Advertisements" section accurately.
Step 7: Pricing and Distribution
Choose which countries your app will be available in. For a first submission, select all countries by default (you can narrow later). If your app is region-specific (e.g. a local transit app), select only relevant countries.
Key decisions:
- Free or paid: Changing from paid to free later is easy. Going from free to paid requires a new app listing
- In-app products: Set up if your app has purchases. Google takes a 15-30% cut depending on your revenue
- Ads: Check "Contains ads" if your app shows any advertising — including your own promotional content
Choose a release type:
- Production: Public release to all users
- Closed testing: Limited to invited testers (recommended for first-timers)
- Open testing: Public but unlisted
- Internal testing: Up to 100 testers, no review required
Recommendation for first submission: Start with Internal testing. Upload your app, send invites to 5-10 devices, and test the full user flow. This catches crashes before production review. After internal testing passes, promote to Closed testing (required by Google in 2026 for new accounts — 20 testers for 14 days).
Step 8: Review and Publish
Before clicking the final button, run through this quick checklist:
- Privacy policy URL is live and links to a real document
- All 8 screenshots are uploaded and match your app's actual UI
- Data Safety form matches what your APK's SDKs collect
- APK is a signed .aab with minSdk 26+ and targetSdk 35
- Content rating questionnaire is complete
- No placeholder text, generic icons, or broken links anywhere
Click "Send for review." Google's automated review pipeline processes submissions in 2026 within:
- 1-3 days for clean first submissions
- 3-7 days if your account is new or has previous issues
- 7+ days for updates with significant changes
You will receive a notification in the Play Console when the review completes. If approved, your app goes live within a few hours. If rejected, read the rejection reason carefully, fix the specific issue, and resubmit.
Common First-Submission Mistakes
From reviewing hundreds of first-time submissions at KappS, these are the most frequent errors:
- Skipping internal testing — submitting directly to production often exposes crashes on low-end devices that you never saw on your own phone
- Incomplete Data Safety declarations — especially forgetting to declare SDK data collection. Firebase, Adjust, and Facebook SDK are the most commonly missed
- Keyword-stuffed title — "Your App Name | Best Free Tool 2026" is rejected instantly. Just use your brand name
- Missing tablet screenshots — Google requires tablet screenshots even if your app is phone-only. Upload at least the minimum sizes
- Outdated targetSdkVersion — building against anything below API 35 triggers an automatic rejection in 2026
Bottom Line
A first Google Play submission in 2026 is a 30-minute process if you have everything ready. The key is preparation: have your privacy policy URL, all screenshots, and a fully tested AAB before you open the console.
Most rejections on first submissions come from the Data Safety mismatch and metadata violations — both easily preventable if you audit before clicking Send. Take the extra hour to check every field, and your app will be live in days, not weeks.