Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Configure Signing Configurations:

...

  1. Save the key.jks file inside the android/app/ directory of your Flutter project.

  2. Update android/app/build.gradle

...

  1. to include signing configurations:

Code Block
android {
    signingConfigs {
        debug {
            storeFile file('key.jks') 
            storePassword 'android'
            keyAlias 'androiddebugkey'
            keyPassword 'android'
        }
        release {
            storeFile file('key.jks') 
            storePassword 'android'
            keyAlias 'androiddebugkey'
            keyPassword 'android'
        }
    }

    buildTypes {
        debug {
            signingConfig = signingConfigs.debug
        }
        release {
            signingConfig = signingConfigs.release
        }
    }
}