As first step you need to get a free Google Play Console account and set it up for your Google Play Developer Account, follow these steps:
1. Go to the Google Play Developer Console website:
- Open your web browser and visit the Google Play Developer Console signup page: [https://play.google.com/apps/publish/signup/](https://play.google.com/apps/publish/signup/).
2. Sign up for an account:
- Click on the "Create account" button to start the signup process.
- You'll be prompted to sign in with your existing Google account or create a new one. If you don't have a Google account, you'll need to create one.
3. Read and agree to the Google Play Developer distribution agreement:
- After signing in, you'll be presented with the Google Play Developer distribution agreement.
- Read through the agreement carefully, and if you agree with the terms, check the box to accept and continue.
4. Fill out your Google Play Developer Profile:
- Next, you'll need to provide some information for your Google Play Developer Profile.
- Fill in the required fields, including your developer name, email address, and phone number. You may also need to provide additional information depending on your location and the type of app you plan to publish.
- Review the information you entered and make sure it is accurate.
5. Complete the registration process:
- Once you have filled out your Google Play Developer Profile, click on the "Continue to Payment" button.
- On the payment screen, select your country and provide the required payment information. Note that there is a one-time registration fee of $25 USD to create a Google Play Developer Account. You can make the payment using a credit or debit card.
- After completing the payment process, your Google Play Developer Account will be created.
Congratulations! You have successfully created a Google Play Console account and set up your Google Play Developer Account. You can now proceed with publishing your apps on the Google Play Store by following the instructions provided in the Google Play Developer Console.
The APK or Android App Bundle you uploaded was signed in debug mode. To proceed, you must sign your APK or Android App Bundle in release mode.
When you try to sign an app open it in your Android Studio
Don't forget to add tester email in admin.
Use first link to download first test app.
https://developer.android.com/tools/bundletool#generate_apks
flutter build apk --split-per-abi

https://developer.android.com/tools/bundletool#deploy_with_bundletool
To run a Flutter app on a real Android device, you can follow these steps:
1. Connect your Android device to your computer using a USB cable.
2. Enable Developer Mode on your Android device. To do this, go to "Settings" > "About phone" (or a similar option) and tap on the "Build number" seven times. This will enable Developer Mode on your device.
3. Enable USB Debugging on your Android device. Go to "Settings" > "Developer options" (or a similar option) and enable "USB debugging." IN development options
4. Open your Flutter project in a code editor or IDE (Integrated Development Environment) such as Visual Studio Code or Android Studio.
5. Ensure that your Flutter SDK is correctly installed and configured. You can verify this by running the command `flutter doctor` in your terminal or command prompt. It will check for any missing dependencies or configuration issues.
6. Once you've verified that your Flutter project is set up correctly, open a terminal or command prompt and navigate to your project's root directory.
7. Connect your Android device to your computer using the USB cable, and make sure it is detected by running the command `flutter devices`. You should see your device listed as a connected device.

8. To run the Flutter app on your Android device, use the command `flutter run`. This will compile the app and install it on your connected device.
9. Wait for the app to build and install on your device. You should see the app launch automatically once the installation is complete.
10. If you encounter any issues or errors during the process, check the error messages in the terminal or command prompt for troubleshooting. You may need to install additional packages or resolve any missing dependencies.
That's it! Your Flutter app should now be running on your real Android device. You can interact with the app directly on your device and test its functionality.
1. Go to the Google Play Developer Console website:
- Open your web browser and visit the Google Play Developer Console signup page: [https://play.google.com/apps/publish/signup/](https://play.google.com/apps/publish/signup/).
2. Sign up for an account:
- Click on the "Create account" button to start the signup process.
- You'll be prompted to sign in with your existing Google account or create a new one. If you don't have a Google account, you'll need to create one.
3. Read and agree to the Google Play Developer distribution agreement:
- After signing in, you'll be presented with the Google Play Developer distribution agreement.
- Read through the agreement carefully, and if you agree with the terms, check the box to accept and continue.
4. Fill out your Google Play Developer Profile:
- Next, you'll need to provide some information for your Google Play Developer Profile.
- Fill in the required fields, including your developer name, email address, and phone number. You may also need to provide additional information depending on your location and the type of app you plan to publish.
- Review the information you entered and make sure it is accurate.
5. Complete the registration process:
- Once you have filled out your Google Play Developer Profile, click on the "Continue to Payment" button.
- On the payment screen, select your country and provide the required payment information. Note that there is a one-time registration fee of $25 USD to create a Google Play Developer Account. You can make the payment using a credit or debit card.
- After completing the payment process, your Google Play Developer Account will be created.
Congratulations! You have successfully created a Google Play Console account and set up your Google Play Developer Account. You can now proceed with publishing your apps on the Google Play Store by following the instructions provided in the Google Play Developer Console.
Next step is building your bundle
The APK or Android App Bundle you uploaded was signed in debug mode. To proceed, you must sign your APK or Android App Bundle in release mode.
Documentation about signing. This is very importend stap and you need to do in
https://developer.android.com/studio/publish/app-signing
Error if not signed or signed for debug.
You need to use a different package name because 'com.example' is restricted.
Your Android App Bundle is signed with the wrong key. Ensure that your App Bundle is signed with the correct signing key and try again. Your app bundle is expected to be signed with the certificate with fingerprint:
/Documents/autov.be/FlutterFlow/autovbe/android/app
Build it via Android Studio UI.
Create your first app
https://play.google.com/console/
As you go through the setup process, the dashboard will provide guidance on the necessary steps to get your app up and running. It offers recommendations on managing, testing, and promoting your app. Once you finish a task, return to the dashboard to discover additional actions you can take to further enhance your app's development and success.
Upload bundle and add testers for test release.
https://play.google.com/console/u/0/developers/5478756553215240684/app/4972169292301463450/tracks/4701551832849118716?tab=testers
Use first link to download first test app.
Split-per-abi
Not immediately necessary, but could be useful.https://developer.android.com/tools/bundletool#generate_apks
flutter build apk --split-per-abi
https://developer.android.com/tools/bundletool#deploy_with_bundletool
Version code 1 has already been used. Try another version code.
In moderne files
app_name/android/app/build.gradle
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
So, you could find this configuration in
vim android/local.properties
sdk.dir=/Users/sergejdergatsjev/Library/Android/sdk
flutter.sdk=/Users/sergejdergatsjev/Documents/flutter/flutter
flutter.buildMode=debug
flutter.versionName=1.0.0
flutter.versionCode=1
flutter.buildMode=debug
flutter.versionName=1.0.2
flutter.versionCode=2
How to Run Flutter App on Real Android Phone Device
Google android usb driver
1. Connect your Android device to your computer using a USB cable.
2. Enable Developer Mode on your Android device. To do this, go to "Settings" > "About phone" (or a similar option) and tap on the "Build number" seven times. This will enable Developer Mode on your device.
3. Enable USB Debugging on your Android device. Go to "Settings" > "Developer options" (or a similar option) and enable "USB debugging." IN development options
Plug usb in when your Development options are open and allow usb debugging for this computer.
4. Open your Flutter project in a code editor or IDE (Integrated Development Environment) such as Visual Studio Code or Android Studio.
5. Ensure that your Flutter SDK is correctly installed and configured. You can verify this by running the command `flutter doctor` in your terminal or command prompt. It will check for any missing dependencies or configuration issues.
6. Once you've verified that your Flutter project is set up correctly, open a terminal or command prompt and navigate to your project's root directory.
7. Connect your Android device to your computer using the USB cable, and make sure it is detected by running the command `flutter devices`. You should see your device listed as a connected device.
8. To run the Flutter app on your Android device, use the command `flutter run`. This will compile the app and install it on your connected device.
9. Wait for the app to build and install on your device. You should see the app launch automatically once the installation is complete.
10. If you encounter any issues or errors during the process, check the error messages in the terminal or command prompt for troubleshooting. You may need to install additional packages or resolve any missing dependencies.
That's it! Your Flutter app should now be running on your real Android device. You can interact with the app directly on your device and test its functionality.
Google Play app designing its icons
The Google Play icon design refers to the visual representation of the Google Play Store, which is the official app store for Android devices. The icon design plays a crucial role in representing the Google Play brand and serves as a recognizable symbol for users.
The Google Play icon has gone through several iterations over the years, reflecting Google's evolving design principles. The current design features a triangle-shaped icon, known as the Google Play "Play" button, with vibrant colors and a white outline. The triangle represents a play symbol commonly associated with media playback.
The design of the Google Play icon aims to be visually appealing, distinctive, and easily identifiable. It follows Google's Material Design guidelines, which emphasize simplicity, clarity, and consistency across their products and platforms. The use of bold colors and geometric shapes helps the Google Play icon stand out on various device screens and app interfaces.
As an essential element of the Android ecosystem, the Google Play icon is present on millions of devices worldwide. Its design ensures a cohesive and intuitive user experience, as users can quickly locate and access the Google Play Store to discover, download, and update applications, games, movies, books, and other digital content.
Overall, the Google Play icon design represents Google's commitment to creating visually engaging and user-friendly experiences within the Android ecosystem, while maintaining brand consistency and recognition.
https://developer.android.com/studio/write/create-app-icons#create-adaptive
The feature graphic serves a dual purpose when it appears after adding a video:
1. It aims to entice visitors to play and watch your promotional video.
2. It aims to effectively communicate your app's value proposition.
Achieving both objectives with a single graphic is challenging, especially considering that accomplishing this task with multiple screenshots is already difficult.
In short, the solution lies in a combination of compelling visuals, which include branding elements, and, in many cases, persuasive copy. To delve into further details and explore examples, please continue reading.
Additionally, it's important to consider that if you have put in considerable effort to be featured by Google, it is crucial to encourage individuals who come across your feature graphic to give your app a try.
The Google Play icon has gone through several iterations over the years, reflecting Google's evolving design principles. The current design features a triangle-shaped icon, known as the Google Play "Play" button, with vibrant colors and a white outline. The triangle represents a play symbol commonly associated with media playback.
The design of the Google Play icon aims to be visually appealing, distinctive, and easily identifiable. It follows Google's Material Design guidelines, which emphasize simplicity, clarity, and consistency across their products and platforms. The use of bold colors and geometric shapes helps the Google Play icon stand out on various device screens and app interfaces.
As an essential element of the Android ecosystem, the Google Play icon is present on millions of devices worldwide. Its design ensures a cohesive and intuitive user experience, as users can quickly locate and access the Google Play Store to discover, download, and update applications, games, movies, books, and other digital content.
Overall, the Google Play icon design represents Google's commitment to creating visually engaging and user-friendly experiences within the Android ecosystem, while maintaining brand consistency and recognition.
Links
https://support.google.com/googleplay/android-developer/answer/9866151#zippy=%2Capp-icon
https://developer.android.com/distribute/google-play/resources/icon-design-specifications
https://developer.android.com/develop/ui/views/launch/icon_design_adaptive
https://support.google.com/googleplay/android-developer/answer/9866151#zippy=%2Capp-icon
https://developer.android.com/studio/write/create-app-icons#about
To create custom icons, such as your app launcher icon, it is recommended to utilize Image Asset Studio. When dealing with launcher icons in particular, the AndroidManifest.xml file should include a reference to the location "mipmap/". Image Asset Studio conveniently generates the necessary code for this. The code snippet below demonstrates how the manifest file refers to the ic_launcher icon located in the mipmap/ directory.
To create custom icons, such as your app launcher icon, it is recommended to utilize Image Asset Studio. When dealing with launcher icons in particular, the AndroidManifest.xml file should include a reference to the location "mipmap/". Image Asset Studio conveniently generates the necessary code for this. The code snippet below demonstrates how the manifest file refers to the ic_launcher icon located in the mipmap/ directory.
1. It aims to entice visitors to play and watch your promotional video.
2. It aims to effectively communicate your app's value proposition.
Achieving both objectives with a single graphic is challenging, especially considering that accomplishing this task with multiple screenshots is already difficult.
In short, the solution lies in a combination of compelling visuals, which include branding elements, and, in many cases, persuasive copy. To delve into further details and explore examples, please continue reading.
Additionally, it's important to consider that if you have put in considerable effort to be featured by Google, it is crucial to encourage individuals who come across your feature graphic to give your app a try.
Comments
Post a Comment