Flutter: upgrade the version code for play store

I have published an application on the play store with flutter, now I want to upload a new version of the application. I am trying to change the version code with: flutter build apk –build-name=1.0.2 –build-number=3 or changing the local.properties like this flutter.versionName=2.0.0 flutter.versionCode=2 flutter.buildMode=release but every time I get an error on the play … Read more

What Git branching models work for you?

Our company is currently using a simple trunk/release/hotfixes branching model and would like advice on what branching models work best for your company or development process. Workflows / branching models Below are the three main descriptions of this I have seen, but they are partially contradicting each other or don’t go far enough to sort … Read more

C# if/then directives for debug vs release

In Solution properties, I have Configuration set to “release” for my one and only project. At the beginning of the main routine, I have this code, and it is showing “Mode=Debug”. I also have these two lines at the very top: #define DEBUG #define RELEASE Am I testing the right variable? #if (DEBUG) Console.WriteLine(“Mode=Debug”); #elif … Read more

How to create a release signed apk file using Gradle?

I would like to have my Gradle build to create a release signed apk file using Gradle. I’m not sure if the code is correct or if I’m missing a parameter when doing gradle build? This is some of the code in my gradle file: android { … signingConfigs { release { storeFile file(“release.keystore”) storePassword … Read more