Release the "New Jobs" application on Google Play ( Android )

Initially, I always tested and launched from the command line on the device and so on. Now, I have to compile for testing and release.

Since it's a new app, we naturally have new procedures. Detailed step-by-step instructions can be found in the documentation. Here, I'll only use screenshots.

https://developer.android.com/studio/publish/app-signing#sign-apk


However, since it's a new app, I need to generate a new key first so that I can sign the bundle later. Keep this file safe and make a backup on the hard drive or in the cloud.


Generate an upload key and keystore

https://developer.android.com/studio/publish/app-signing#generate-key






Once everything is filled in and the Release upload is done, you still need screenshots. An interesting app for trying out screenshots is this one:

This app looks good even in its paid version:

https://previewed.app/mockups/screenshots

You don't need to purchase anything here because the cheapest option fits perfectly in dimensions, while others are too large. So, from here, you can generate and publish screenshots without premium features.

Debug label
To take screenshots without the "Debug" label, you need to first start the emulator and then run "flutter run --release".

This loads it onto the correct device.

In 10 inches, the release mode doesn't work, and I still have to remove the debug label with Photoshop.

Furthermore, this Android device doesn't allow these images.


To calculate the height in an aspect ratio of 9:16 with a width of 1080, you can use the formula:

Height=(Width×16)/9

Plugging in the values:

Height=(1080×16)/9

Height=17280/9

Height≈ 1920

So, the height in an aspect ratio of 9:16 with a width of 1080 would be approximately 1920 pixels.

An active app bundle was uploaded before you chose your app signing key.

Now we just have to wait for the results of the review.

https://play.google.com/store/apps/details?id=com.onlineSolutionGroup.newjobs

Comments