One Build Number for all platforms

Hi There,
At the moment when I define the build number, I do this for each platform separate. For example for android I set the build number in the file ''projectXYZ/projectXYZ/android/app/build.gradle":

android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    defaultConfig {
        applicationId "com....."
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        **versionCode 10003**
        **versionName "1.00.03"**
        testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

I ask me, if I do this the right way? Can I set the build number generally in one file and use it for all my platforms (ios and android)?

Thank in advance :slight_smile: